# function for data profiling
data_profiling <- function(df){
summary_table <- tibble(var = names(df),
       variable_type = map_chr(.x = df, .f = function(col) class(x = col)),                 
       num_unique = map_int(.x = df, .f = function(col) length(x = unique(x = col))),
       num_missing = map_int(.x = df, .f = function(col) sum(x = is.na(x = col)))) %>%
  mutate(perc_missing = round(x = 100 * num_missing / nrow(x = .), digits = 2L))
return(summary_table)
}

Table: Cert

In total, there are 449867 entries in cert table. There are two types of certificates: certification and license. On average, each person received 2 certificates (sd = 1.68).

#check that id columns are identical and drop the final one
ncol(cert)
## [1] 5
identical(cert[[1]],cert[[5]])
## [1] TRUE
cert <- cert[-5]

data_profiling(cert)
## # A tibble: 4 x 5
##   var      variable_type num_unique num_missing perc_missing
##   <chr>    <chr>              <int>       <int>        <dbl>
## 1 id       integer           217842           0            0
## 2 name     character           2779           0            0
## 3 type     character              3           0            0
## 4 position integer               34           0            0
cert <- cert%>%
  mutate(type = if_else(type == "license", "License", type))

table(cert$type)
## 
## Certification       License 
##        421590         28277
cert_n <- cert%>%
  group_by(id)%>%
  summarize(n_cert = n())

ggplot(cert_n, aes(x = n_cert)) +
  geom_histogram(binwidth = 1.3) +
  labs(title = "Distribution of the number of certificates people received", x = "number of certificates")

favstats(cert_n$n_cert)
##  min Q1 median Q3 max     mean       sd      n missing
##    1  1      1  2  34 2.065107 1.680903 217842       0
# top 10 certificates
cert_name <- cert%>%
  group_by(name)%>%
  summarize(n_cert_name = n())%>%
  arrange(desc(n_cert_name))%>%
  top_n(10)%>%
  rename("number of people who received the certificate" = "n_cert_name")

Table: Ed

#check that id columns are identical and drop one
ncol(ed)
## [1] 13
identical(ed[[1]],ed[[13]])
## [1] TRUE
ed <- ed[-13]

data_profiling(ed)
## # A tibble: 12 x 5
##    var               variable_type num_unique num_missing perc_missing
##    <chr>             <chr>              <int>       <int>        <dbl>
##  1 id                integer           686554           0           0 
##  2 degreelevel       character            668      422281     3519008.
##  3 instituition      character         228740       86750      722917.
##  4 institutioncity   character          23591      575992     4799933.
##  5 institutionstate  character           3819      536505     4470875 
##  6 degreeposition    integer               63           0           0 
##  7 degreetype        character          43541      403991     3366592.
##  8 ipeds_unit_id     integer             3776      646157     5384642.
##  9 major             character         133131      499561     4163008.
## 10 majorcipcode      character          13581      721168     6009733.
## 11 completiondateraw character          80361      564943     4707858.
## 12 gpa               character          11103     1054068     8783900

Table: Pers

#check that id columns are identical and drop one
ncol(pers)
## [1] 10
identical(pers[[1]],pers[[10]])
## [1] TRUE
pers <- pers[-10]

data_profiling(pers)
## # A tibble: 9 x 5
##   var                variable_type num_unique num_missing perc_missing
##   <chr>              <chr>              <int>       <int>        <dbl>
## 1 id                 integer           686912           0          0  
## 2 statename          character             53      171248    1902756. 
## 3 cityname           character          31681       11440     127111. 
## 4 msa                character           5477          22        244. 
## 5 zipcode            character          12713           4         44.4
## 6 gender             character              3      126328    1403644. 
## 7 noofschooldegrees  integer               37         358       3978. 
## 8 noofcertifications integer               32      467341    5192678. 
## 9 noofjobs           integer               20       36764     408489.
# Preliminary profiling for pers table. 

pers %>% group_by(msa) %>% summarise(n = n()) %>% mutate(freq = n / sum(n))
## # A tibble: 5,477 x 3
##    msa                                                               n      freq
##    <chr>                                                         <int>     <dbl>
##  1 ||||||||||||||||||||||||||||||||||||||||||||||||47900: Metro…     1   1.46e-6
##  2 |||||||||||||||||||||||||||16860: Metropolitan Statistical A…     1   1.46e-6
##  3 ||||||||||||||||35260: Micropolitan Statistical Area|||26860…     1   1.46e-6
##  4 |||||||||||||||47900: Metropolitan Statistical Area;548: Com…     1   1.46e-6
##  5 ||||||||||||||13980: Metropolitan Statistical Area|35620: Me…     1   1.46e-6
##  6 ||||||||||||47900: Metropolitan Statistical Area;548: Combin…     1   1.46e-6
##  7 ||||||||||47900: Metropolitan Statistical Area;548: Combined…     1   1.46e-6
##  8 |||||||||47900: Metropolitan Statistical Area;548: Combined …     1   1.46e-6
##  9 ||||||||47900: Metropolitan Statistical Area;548: Combined S…     1   1.46e-6
## 10 ||||||||47900: Metropolitan Statistical Area;548: Combined S…     1   1.46e-6
## # … with 5,467 more rows
# Checking on MSA. This column is messy and it looks like multiple values are being captured. 

pers %>% group_by(gender) %>% summarise(n = n()) %>% mutate(freq = n / sum(n))
## # A tibble: 3 x 3
##   gender      n  freq
##   <chr>   <int> <dbl>
## 1 female 270489 0.394
## 2 male   290342 0.423
## 3 <NA>   126328 0.184
# Checking on gender. There are slightly more male than female resumes, but overall pretty even distribution.

pers %>% group_by(zipcode) %>% summarise(n = n()) %>% mutate(freq = n / sum(n)) %>% arrange(-freq) %>% head(15)
## # A tibble: 15 x 3
##    zipcode     n   freq
##    <chr>   <int>  <dbl>
##  1 20774    8782 0.0128
##  2 20874    8732 0.0127
##  3 20019    8646 0.0126
##  4 20147    8288 0.0121
##  5 20002    8217 0.0120
##  6 20011    8003 0.0116
##  7 20744    7892 0.0115
##  8 20878    7868 0.0115
##  9 20904    7831 0.0114
## 10 20020    7824 0.0114
## 11 22193    7707 0.0112
## 12 22304    7700 0.0112
## 13 22191    7589 0.0110
## 14 22030    7331 0.0107
## 15 20772    7250 0.0106
# Checking on zip code. The distribution is pretty even. The top 15 are all in the DC metropolitan area. 

pers %>% group_by(noofjobs) %>% summarise(n = n()) %>% mutate(freq = n / sum(n))
## # A tibble: 20 x 3
##    noofjobs      n    freq
##       <int>  <int>   <dbl>
##  1        1  32074 0.0467 
##  2        2  62979 0.0917 
##  3        3 101725 0.148  
##  4        4 109087 0.159  
##  5        5  93009 0.135  
##  6        6  73214 0.107  
##  7        7  53187 0.0774 
##  8        8  38070 0.0554 
##  9        9  26235 0.0382 
## 10       10  18765 0.0273 
## 11       11  12660 0.0184 
## 12       12   9323 0.0136 
## 13       13   6190 0.00901
## 14       14   4505 0.00656
## 15       15   3083 0.00449
## 16       16   2421 0.00352
## 17       17   1648 0.00240
## 18       18   1324 0.00193
## 19       19    896 0.00130
## 20       NA  36764 0.0535
ggplot(pers, aes(x = noofjobs)) +
  geom_histogram(bins = 19)

# Checking on the number of jobs. 

Table: Job

#check that id columns are identical and drop one
ncol(job)
## [1] 10
identical(job[[1]],job[[10]])
## [1] TRUE
job <- job[-10]

data_profiling(job)
## # A tibble: 9 x 5
##   var         variable_type num_unique num_missing perc_missing
##   <chr>       <chr>              <int>       <int>        <dbl>
## 1 id          integer           686648           0           0 
## 2 onet        character           1043      919078    10211978.
## 3 jobposition integer              144      591484     6572044.
## 4 state       character          10671     2226393    24737700 
## 5 city        character          49480     1876995    20855500 
## 6 county      character             22     4091382    45459800 
## 7 sector      character             21     2446285    27180944.
## 8 startdate   Date                9655      704870     7831889.
## 9 enddate     Date                8711      704870     7831889.
# Preliminary profiling for job table. 

job %>% count(onet) %>% arrange(-n) %>% head(15)
##          onet      n
## 1        <NA> 919078
## 2  11-9199.00 206754
## 3  43-6014.00 110522
## 4  43-9061.00 106809
## 5  13-1111.00  95350
## 6  15-1132.00  77834
## 7  11-1021.00  73966
## 8  15-1151.00  71120
## 9  41-4012.00  66773
## 10 13-1071.00  59794
## 11 15-2031.00  57677
## 12 43-4051.00  56683
## 13 41-2031.00  52368
## 14 15-1121.00  46835
## 15 11-2022.00  45915
# Checking on onet. There may be some issues with this variable since the number of unique values (1046) is more than the number of unique onet codes online (1016)

year_start <- job %>% mutate(year = year(startdate)) %>% filter(!is.na(year)) %>% group_by(year) %>% summarise(n = n()) %>% mutate(freq = n / sum(n))

# Checking on startdate. Some a few observations seem impossible (1900) and some might be unlikely. 

ggplot(year_start, aes(x = year, y = n)) +
  geom_smooth() +
  xlim(2000, 2020)

# The distribution of startdates from 2000-2020 looks as expected. 
       
year_end <- job %>% mutate(year = year(enddate)) %>% filter(!is.na(year)) %>% group_by(year) %>% summarise(n = n()) %>% mutate(freq = n / sum(n))

ggplot(year_end, aes(x = year, y = n)) +
         geom_smooth() +
         xlim(2000, 2020)

# The distribution of enddates is concentrated after 2015. We might expect this since the data is resumes collected from jobseekers around this time.

job %>% mutate(month = month(startdate)) %>% filter(!is.na(month)) %>% group_by(month) %>% summarise(n = n()) %>% mutate(freq = n / sum(n))
## # A tibble: 12 x 3
##    month       n   freq
##    <dbl>   <int>  <dbl>
##  1     1 1141077 0.330 
##  2     2  178737 0.0517
##  3     3  195754 0.0567
##  4     4  184055 0.0533
##  5     5  241024 0.0698
##  6     6  282033 0.0816
##  7     7  199888 0.0579
##  8     8  264751 0.0766
##  9     9  250330 0.0725
## 10    10  216641 0.0627
## 11    11  167688 0.0485
## 12    12  132539 0.0384
job %>% mutate(day = day(startdate)) %>% filter(!is.na(day)) %>% group_by(day) %>% summarise(n = n()) %>% mutate(freq = n / sum(n))
## # A tibble: 31 x 3
##      day       n     freq
##    <int>   <int>    <dbl>
##  1     1 3403814 0.985   
##  2     2    2338 0.000677
##  3     3    2083 0.000603
##  4     4    1912 0.000553
##  5     5    2441 0.000707
##  6     6    1988 0.000575
##  7     7    1800 0.000521
##  8     8    1696 0.000491
##  9     9    1814 0.000525
## 10    10    2498 0.000723
## # … with 21 more rows
# For month there is a greater frequency of startdates in January. For day the frequency is greatest for the first of the month. 

table(ed$degreetype)
## 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       - BA Honours ( 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - Diploma:    ADN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - Graduate Degree - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         -Bachelor's: 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ,  ( Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             , B.Com- 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         , BA (Hons), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         , BA degree. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        , Bachelor of Commerce (BCom) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ; Associate Degree - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  : Associate Degree. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              : Graduate Certificate, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              : Graduate Certificate: 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .  A.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .  BA Degree. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .  Graduate Degree: 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .  Juris Doctor/LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         . BA Degree- 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            'A' Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            'A' LEVEL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             'A' Level Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           'A' Levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      'A' LEVELS#10+2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            'O' Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   (10th -12th Grade) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                          (Education)\t \tDegree#Master's Degree#Graduate#(Administration)\t \tDegree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      (GCE 'A' Level) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        *    High School Diploma, GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * B.Sc. Honors, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    * B.Sc. Honors* , 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * BA (Honours), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * Bachelor of Commerce (BCOM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * Graduate Certificate ( 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         *Bachelor of Arts (Honours): 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     *Bachelor of Science Management: 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         *Diploma/GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               *Graduate Certificate: 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                *Graduate Degree: M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  *Graduate Degree: Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    *High School Diploma          GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         *MS Degree - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1.  A.S.#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1.  A.S.#B.S#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. JD and MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1. Juris Doctorate/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                10+ 2#C.B.S.E#C.B.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 10+2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10+2#Three months Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 10TH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           10th grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           10th Grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      10th Grade#11th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                10th grade#12th grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        10th Standard 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10th#11th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       10th#11th#12th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      10th#12th grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 10th#12th grade#11th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             10th#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             10th#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        11.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 11th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   37 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 11TH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11th#11th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11th#12th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      11th#12th grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      11th#12th Grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           11th#12th Grade#12th Grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        11th#12th#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         11th#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             11th#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             11th#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           11th#High School Diploma and International Baccalaureate Diploma#11th#12th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 11th#Master of International management (Global MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               12 credits of graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                12 th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 12th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 12TH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           12th Class 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           12th grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           12th Grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           12Th Grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           12TH Grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12th Grade Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         12th grade#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12th grade#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               12th Grade#H.S Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              12th Grade#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       12th grade#high school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       12th Grade#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       12th Grade#International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        12th Standard 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12th Standard#10th Standard 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             12th#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             12th#International Baccalaureate diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12th#International Baccalaureate#IB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 13.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1st Class Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                20003 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          20005 Computer Sciences Degree#CS Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                20008 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        20009 Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                20017 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       20019. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                20020 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            20052#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                20059 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                20742          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                20850 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             25506703 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2YR DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   3. Banking Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. Diploma#BS equivalency 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              31 credits Coursework towards bachelor's degree#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          36 graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3RD Degree Master Mason 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4 Year Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                  806-6100)Okay to contact this Supervisor: YesEducation:Howard University  Washington, DC  United StatesBachelor's Degree#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  232 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A . A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A .A. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A .S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A & M (SU)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A +   Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A + Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A DEGREE#year Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         A Doctoral of Management (ABD)#Doctoral of Management degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          a level#bed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A Level#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A Levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A levels Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A LEVELS#GCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A Levels#Grade 12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A Master of Arts (M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               a Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A- level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A-level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A-Level Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A-Level Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A-Level#A Level#GCE A-Level#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A-levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A-Levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A-Levels#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A,S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A. - M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   91 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A. A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A. A.  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A. A. & S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A. A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A. A. degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A. A. Degree#B. S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A. A. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A. A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A. A#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A. A#DIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A. B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A. B#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A. Drama\\n  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A. E#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A. IN MUSIC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A. M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A. M#M. B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      a. Ministerial Diploma#Biblical Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A. of Science of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 a. Ph.D. (and MPA)#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   56 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A. S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A. S. Degree#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A. S. Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A. S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A..A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.\\n\\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 3555 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A .S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.A (Associates of Arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A \\nDuval High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A Applied Geography degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A Associate of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A Business Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A CNS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   54 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A Degree#H.S. Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A received 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.A, A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A, A.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A, Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A.  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A. (DEUG) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A. (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A. & A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.A. & S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A. ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A. Administration of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.A. Administration of Justice/A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A. and A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A. and A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A. and B.A. Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A. Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A. Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A. Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A. Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A. Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A. Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A. Associates of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A. BIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A. Business Admin Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A. Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A. COMPUTER PROGRAMMING Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   55 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  278 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A. Degree Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A. Degree Arts and Sciences Option 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A. Degree#A.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A. Degree#A.A. Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A. Degree#A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A. Degree#AAS Degree\\nA.A. Degree#AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A. Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A. Degree#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A. Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A. Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A. degree#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A. Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A. Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A. Degree#GEORGE'S COMMUNITY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A. degree#Graduated (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.A. Degree#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A. Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A. Degree#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A. Degree#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A. Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A. General Transfer degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A. Korean 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.A. Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A. Marketing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A. of Applied Science Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A. of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A. of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A. S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A. S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A. S#A.A. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A. S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A., (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A., A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A., degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A..S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A.\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A.&S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A.B. (Associate of Applied Business) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A.B.A.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.C.S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A.C.S.B. Accredited 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A.C.S.B#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A.Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A.DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.G.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                a.a.s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 3068 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.A.S   Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.A.S (AHT Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A.S (Associate of Applied Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S (Associates in Applied Science) degree#A.A.S (Associates in Applied Science) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.A.S (Associates) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A.S ) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A.S Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A.S COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   76 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A.S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S Degree#A.A.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A.S Degree#A.A.S Degree#A.A.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A.S Degree#A.A.S Degree#A.A.S Degree#A.A.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.S degree#A.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.S Degree#A.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A.S Degree#Associate of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.S Degree#B.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A.S Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.S degree#Bachelor of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A.S Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A.S Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A.S degree#Networking (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A.S Intended Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A.S of Administration of Criminal Justice#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A.S of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A.S Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S Science degree#high school graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A.S, Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A.S, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S, Radiography Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A.S.   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A.S.  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A.S. ,  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.A.S. ; DECEMBER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.A.S. / Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.A.S. Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A.S. Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A.S. and A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.A.S. and Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A.S. Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A.S. Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A.S. Biotechnology Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A.S. culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   51 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  263 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A.S. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A.S. DEGREE (HVAC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.S. degree. Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.S. Degree#A.A.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S. Degree#A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A.S. degree#A.S#Postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.A.S. Degree#ABA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.A.S. Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A.S. Degree#Bachelor of Science#A.A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A.S. Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.S. degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A.S. Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A.S. Degrees#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A.S. EOD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A.S. HVACR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A.S. INFORMATION SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A.S. INFORMATION SYSTEMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A.S. of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A.S. Pursuing degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S. Radiography degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S. RN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A.S. Software Applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A.S., Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A.S., Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A.S.) Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A.S.) Associate of Applied Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A.S.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A.S./B.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A.S.#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.S.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A.S.D) Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A.S.Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A.S.E.T/CT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.S.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.A.S#A.A.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A.S#A.A.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A.S#A.A.S#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.A.S#A.A#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A.S#A.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A.S#A+ Certification course 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A.S#AA#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A.S#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A.S#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.A.S#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.S#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A.S#Associate#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A.S#Associate#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A.S#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A.S#Associates\t\t     Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.S#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A.S#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.S#Associates of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A.S#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A.S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A.S#B.A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.A.S#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.A.S#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.A.S#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.S#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A.S#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A.S#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.A.S#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.A.S#C.A.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A.S#Computer Networks Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A.S#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A.S#Diploma#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A.S#EGD#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A.S#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.A.S#Graduate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A.S#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A.S#Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A.S#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A.S#Honors Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A.S#HS DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A.S#J.D#B.A. History B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A.S#M.A#M.B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A.S#M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.A.S#Master's Certificate#M.A#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A.S#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A.S#masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A.S#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A.S#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A.S#Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A.S#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A.S#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A.S#UMU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A.S#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.A(Associate Art) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A/B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A\\nFaculty of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.A#A. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A#A.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A#A.A. diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A#A.A.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A#A.A#A.A.A#BA/BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A#A.A#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A#A.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A#A.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A#Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A#Associate Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.A#Associate Degree H.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A#Associate of Ministry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.A#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A#Associate of Science#H.S Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A#Associate Professor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A#Associate\\nof Arts#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A#Associate#H.S Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A#Associates of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A#B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A#B.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A#B.S#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A#B.S#M.S.F.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.A#Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A#Baccalaur�at 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.A#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A#Bachelors degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A#BS#High\\nSchool Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A#BS#MSSDM. Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A#C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A#D.O.D#D.O.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.A#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A#H.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.A#H/S Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A#HI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A#High School          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.A#High School - Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A#High School Diplom 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A#Juris Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.A#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.A#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.A#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.A#Masters#USMAPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A#MD receiving degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.A#MD#Diploma#Diploma#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.A#MD#Diploma#Diploma#MD#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.A#PROFESSIONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.A#Programmer Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.A#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.A#S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.A#SER HOURS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.A#SKILLS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.A#STEM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.AS. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  341 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.B.      Philosophy     \t ST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.B.    Literature 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.B.   Sociology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.B. and M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.B. Chemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.B. CUM LAUDE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.B. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.B. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.B. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.B. Divine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.B. Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.B. Economics Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.B. English Honors Degree Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.B. Freeman 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.B. Geology and A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.B. History 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.B. Honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.B. Interdisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.B. SPANISH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.B.A accredited 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.B.A MAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.B.A#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.B.A#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.B.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.B.D#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.B.D#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.B.D#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.B#A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.B#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.B#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.B#BFA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.B#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.B#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.B#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.B#M.D#A.O.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.B#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.B#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.B#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.B#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   39 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.D.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.D.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.D.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.D#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.D#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.D#Bachelor \\nof Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.D#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.F. A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.F.A DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.F.A#B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.F.B. \\nA.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.G.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.I.B -- Banking Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.I.S.S.E\tM.G.M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.L.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.L.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.L.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.L.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.M.E#Bsc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.M.Gorky#Master's degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.M.I.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.O.A Drama Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.O.F 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.o.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.O.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   43 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.O.S \\nGraduation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.O.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.O.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.O.S. Culinary Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.O.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.O.S. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.O.S. Degree#Associate of Occupational Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.O.S#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.R.M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 3150 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.S (HONORS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.S \\n          Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.S degree of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S degree#A.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S Degree#Bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.S degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.S Electronic Technician Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.S MAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.S of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.S of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.S Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.S Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.S Social Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.S.  Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.S. - CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.S. ; MAY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.S. (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.S. & A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.S. Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.S. Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.S. Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.S. Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S. Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.S. Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.S. Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.S. ASSOCIATES OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S. Associates Science Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.S. B .A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.S. BIO ENGINEERING#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.S. Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.S. Business Administration w/ conc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.S. Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.S. Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.S. COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.s. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  224 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.S. Degree#A levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.S. Degree#A.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.S. degree#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S. Degree#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.S. degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.S. Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.S. Degree#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.S. degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S. Degree#BS. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.S. degree#Culinary Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.S. Degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.S. Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.S. Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S. Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.S. Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.S. EET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.S. MECHANICAL ENGINEERING \\nA.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S. N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.S. of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.S. of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.S. of General Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.S. of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S. of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.S. SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.S. Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.S. TBD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.S. YEAR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.S., Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.S., Degree's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.S., Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.S.(Hon) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.S.\\nA.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.S.\\nDegree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A.S.A#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.S.A#O.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.S.B. Business Administration, Graduate#B.B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.S.C.S.  CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.S.Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.S.DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.S.E.E#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.S.E#A.S.E. I.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.S.H.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.S.L. Club 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.S.M.E.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.S.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.S.S & Administration Of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.S.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.S.S. Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.S.S. Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.S.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S/BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.S\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.S#A.A.S Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.S#A.A.S#Bookkeeping Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.S#A.A.S#C.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.S#A.A.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.S#A.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.S#A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.S#A.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.S#A.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.S#A.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.S#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.S#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.S#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.S#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.S#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.S#Associate of Science#A.A#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.S#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.S#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.S#Associates of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.S#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.S#Associates of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.S#B.A. and M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.S#B.B.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.S#B.S Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.S#B.S nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.S#B.S. and M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.S#B.S.\\nA.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.S#B.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.S#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.S#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.S#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A.S#Bachelor of Commerce#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.S#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.S#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.S#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.S#Bachelors of Computer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A.S#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.S#BBA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A.S#BOOKKEEPING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.S#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.S#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A.S#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A.S#E.D#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A.S#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.S#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A.S#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.S#Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A.S#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A.S#M.M#High School\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A.S#Master Chef\\n*Hospitality degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A.S#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.S#U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A.S#VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A.SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A.T#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A.V 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A' Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A'A' degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A'Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A'level's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A" Levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A/A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A/S Degree#B/S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A&M Univ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A#Applied Banking Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A#Bachelors of Business Administrationn 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A#BS#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A#diploma pending 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A#Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A#Masters of Arts#Masters of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A#N.A.S.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A#Pursuit of M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A#VA. A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A+    Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       A+ Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A+ Certificate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A+ Certificate#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A+ certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A+ Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  137 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A+ CERTIFICATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A+ Certification course 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A+ Certification Course 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A+ Certification Training 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A+ Certification; MCSE#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A+ Certification#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                A+ Certification#Associate Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               A+ Certification#Associates of Arts#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A+ Certification#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A+ certification#B.S#Masters#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A+ Certification#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A+ Certification#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A+ Certification#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A+ Certification#Diploma (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A+ Certification#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A+ Certification#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A+ COMPUTER TECHNICIAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A+ Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A+ Service Technician Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A+ Technician 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A+ TECHNICIAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A+ Technician Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 3280 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AA\t\tAssociates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AA          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AA (BA)#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AA (Equivalent) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AA (MET) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA /BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AA \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AA & AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AA & BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AA & BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AA & BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA & S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AA & S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AA and BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AA AND BS OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AA Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AA Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AA Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AA Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AA COMPUTER SCIENCE Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA COMPUTER SPECIALIST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  123 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  422 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AA DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AA Degree & AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AA degree diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     AA Degree\\nAssociate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AA degree#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AA Degree#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AA Degree#AA Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA Degree#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     AA Degree#Associate of Applied Science#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA Degree#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA Degree#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AA degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AA Degree#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AA Degree#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AA Degree#BA Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AA degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AA Degree#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AA degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AA degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AA Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AA Degree#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AA Degree#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AA Degree#Business Studies#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AA Degree#Culinary Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AA degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AA Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AA Degree#Diploma AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    AA Degree#Diploma#Diploma#Diploma#High School Diploma#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AA Degree#DUDLEY'S BEAUTY COLLEGE (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AA Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AA degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AA Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AA degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AA Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AA degree#Maryland Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     AA degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AA Degree#Masters of Wine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AA Degree#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AA DEGREE#ONGOING#BS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AA did not graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA Diploma#Diploma MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AA Education degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AA Fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AA Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AA Graduate#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AA Hospitality 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AA LL AA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AA Music Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AA of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AA of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AA of Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AA Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AA Registered Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AA Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AA Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA Transferable degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA- Associates of ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AA-Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AA, Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AA, ECT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA. AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AA. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AA. Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA.AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AA.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AA.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA) Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA)(BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AA/AS#AAS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AA/Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA/BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AA/S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AA&S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AA&S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AA&S Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AA&S#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AA&S#BS#AA&S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AA#A.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AA#A+ Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AA#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AA#AA degree#Bachelors#AA Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AA#AA diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AA#AA In BA and AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AA#AA LLSS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AA#AA.AS#AA.AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AA#AA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA#Academy of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA#Applied Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AA#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AA#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AA#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AA#Associate of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AA#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AA#Associate of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AA#Associate of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       AA#Associate's of Arts Business Administration#Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AA#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AA#Associates (pending) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AA#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AA#Associates Degree     Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AA#Associates of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AA#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AA#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AA#BA transfer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AA#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AA#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AA#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AA#Bachelor of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AA#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AA#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AA#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AA#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AA#Bachelors Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AA#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AA#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AA#BS - Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AA#BS BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AA#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AA#BS#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA#BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AA#BSEE degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AA#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AA#Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AA#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA#DIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AA#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AA#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AA#Graduate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AA#Graduate#SPECIAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AA#H.S. diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AA#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AA#High School\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AA#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA#Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AA#M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA#Maryland High school diploma (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AA#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AA#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     AA#Master#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AA#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AA#MBA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AA#MBA Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AA#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AA#MCSE Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AA#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AA#NO DEGREE#KY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AA#NOVA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AA#Nursing degree\\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AA#PHR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AA#Post Graduate Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AA#pursue International Business degree\\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AA#SMC#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AAA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AAA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AAAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AAB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AAB#Associate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AABA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AABA (Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AABA Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AABA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AABA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AABA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     AABS of Aviation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AACC#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AACJ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AACM Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AACS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AACS#BSCS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AACSB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AACSB accredited\\nMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AACSB#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AACSB#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AACSB#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AACSB#Bachelors of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AAGS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AAGS#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AAIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AAIS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AAIT#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AAMC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AAP#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AAPC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AAPC'S CPC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AAPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1934 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AAS  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AAS  DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AAS (Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AAS (Associate of Applied Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AAS / EET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AAS Administration of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AAS Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AAS Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AAS Associate#AAS Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AAS associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AAS CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AAS Culinary Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AAS Culinary Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AAS Cyber Security Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AAS Cybersecurity degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AAS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   37 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  191 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AAS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AAS Degree (Unofficial) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AAS Degree Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AAS Degree's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AAS DEGREE#AAS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AAS Degree#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AAS Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AAS degree#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AAS Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AAS Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AAS Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AAS Degree#HS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AAS Degree#Ultrasound Tech Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AAS Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AAS, AAS#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AAS, Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AAS, CMT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AAS, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AAS. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AAS) Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AAS) Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AAS) Business Mangement and (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AAS) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AAS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AAS/BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AAS/M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AAS\\n\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AAS#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AAS#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AAS#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AAS#AAS) Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AAS#AAS#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AAS#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AAS#Assoc. of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AAS#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AAS#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AAS#Associate Degree \\nAAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     AAS#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AAS#Associate of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AAS#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AAS#Associate of Science Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AAS#Associate#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AAS#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AAS#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AAS#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AAS#Associates of Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AAS#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AAS#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AAS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AAS#BA- Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AAS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AAS#Bachelor of Technology (BT) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AAS#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AAS#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AAS#Bachelors of Business & Project Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AAS#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AAS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AAS#BS. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AAS#BS#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AAS#BS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AAS#Business of Arts \\nBachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           AAS#Business of Arts \\nBachelors of Arts#Master Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        AAS#Business of Arts \\nBachelors of Arts#Masters of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AAS#CCAF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AAS#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AAS#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AAS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AAS#G.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AAS#Graduate School USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AAS#H.D#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AAS#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AAS#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AAS#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AAS#HS DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AAS#Letter of Recognition 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AAS#MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AAS#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AAS#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AAS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AAS#MS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AAS#MS#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AAS#MS#MS#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AAS#No Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AAS#U.S.A of Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AASBAM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AASET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AASIT degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AASN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AASN Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AAT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AAT Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   56 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AB degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 aB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         aB.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 aB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AB#AB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ABA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ABA Associates of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ABA Bank Operations Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ABA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ABA#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ABA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ABA#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ABA#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               aBacheloras of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ABC#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ABD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ABD (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ABD D.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ABD Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ABD Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ABD PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ABD, Doctor of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ABD, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ABD/Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ABD#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Abitur 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Abitur#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ABJ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ABJ degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ABK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          abM.S#abB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Abogada (Juris Doctor) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Abogado de la Rep�blica de Ecuador 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ABROAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ABS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ABS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ABS Degree#AAS Degree#AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ABSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ACA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ACA#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Academia de Administraci�n de negocios#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Academic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ACADEMIC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Academic (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Academic and Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Academic Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Academic degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Academic Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Academic Degree of Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Academic Degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Academic Degree#CERTIFICATES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Academic Degree#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Academic diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  223 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Academic Diploma          Upper 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Academic Diploma (Graduate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Academic Diploma#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Academic Diploma#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ACADEMIC DIPLOMA#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Academic Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Academic Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Academic Diploma#Bachelor of Science#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Academic Diploma#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Academic Diploma#DIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Academic Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Academic Diploma#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Academic Excellence Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Academic Focus 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Academic High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Academic Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Academic Master of Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Academic Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Academic of Applied Pharmaceutical Sciences (AAPS)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Academic qualifications \\n\\nDegree#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Academic Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Academic/Business and Finance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Academic/General Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Academical Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Academics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Academics          Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Academics (DIPLOMA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Academics and Business {Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Academics and Data Processing, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Academics Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ACADEMICS#Diploma#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Academy Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Academy of Architecture, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Academy of Arts#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Academy of Business & Finance#12th grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Academy of Business and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Academy of Business and Finance#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Academy of Business\\n          and Finance Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Academy of Computer Education#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Academy of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Academy of Economic Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Academy of Economic Studies of Moldova (ASEM)#Law Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Academy of Economic Studies of Moldova.\\nBachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Academy of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Academy of Finance    \\n Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Academy of Finance Business Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Academy of Finance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Academy of Finance, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Academy of Healthcare Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Academy of Hospitality and Management Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Academy of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Academy of Science#10th Grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ACCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ACCA Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ACCA Advanced Diploma#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ACCA#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Accelerated Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Accelerated Master of Science#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Accelerated Masters#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Accelerated Second Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Accelerated Second Degree Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Accociate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Accociate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ACCOLADES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ACCOMPLISHMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ACCOMPLISHMENTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ACCOMPLISHMENTS#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Accounting\t\t\t\t\t\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Accounting          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Accounting  Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ACCOUNTING A.A.S#BACHELOR OF BUSINESS MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Accounting AA#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Accounting AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Accounting AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Accounting and Bookkeeping Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Accounting and Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Accounting and Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Accounting and Finance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Accounting Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Accounting Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Accounting Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Accounting Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Accounting Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Accounting B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Accounting Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Accounting Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Accounting BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Accounting degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   39 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Accounting Degree#COBOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Accounting diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Accounting Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Accounting Diploma- (AS. degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Accounting Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Accounting Practice and Bookkeeping\tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Accounting Transfer Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Accounting, Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Accounting/Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Accounting#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Accounts Inspector Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Accredited Degree#Bachelor of English 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Accredited Degree#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Accredited school \\nB.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ACCT Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ACCTG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ACE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ACE#Associates of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ACFAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               achelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ACHELOR OF LAW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   achelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Achieved A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Achieved aB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Achieved AS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Achieved Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Achieved degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Achieved diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Achieved Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Achieved GED Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Achieved high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Achieved High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Achieved high school diploma#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Achieved MBA#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Achieving BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ACKNOWLEDGMENTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ACL#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Acquired Associate in Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Acquired Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Acquired Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Acquired high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Acquired High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Acquired HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Acquired my Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Acquiring Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ACQUIRING ASSOCIATES OF SCIENCE (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Acquiring BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Acquiring Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Acquiring degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Acquiring Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Acquisition and Contracting Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ACRP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ACS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ACSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ACT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ACTIVE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ACTIVITIESANDCHARITYWORK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AD Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AD#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ADAVANCED DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Adcenter Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ADCJ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ADCJ#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ADDITIONAL PROFESSIONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Additional Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ADDLESON, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ADH\tAdvanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ADJUNCT FACULTY#Master of Arts#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Administracion de Empresas\\nDegree#Master Direccion de Empresas Constructoras#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Administration\t\tGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Administration ( IBA ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ADMINISTRATION (MBA)#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ADMINISTRATION (NIDA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ADMINISTRATION Doctor of Philosophy#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Administration of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Administration of Justice        BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Administration of Justice (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Administration of Justice (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Administration of Justice A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Administration of Justice AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Administration of Justice Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Administration of Justice Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Administration of Justice B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Administration of justice degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Administration of Justice#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               administration. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Administration#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Administration#Bachelor of Commerce Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ADMINISTRATION#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Administration#M.S#MBA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Administration#MBA#BA#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Administration#MBA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ADMINISTRATIONBACHELOR OF ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ADMINISTRATIVE ASSISTANT CAREER DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Administrative Assistants' Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Administrative Assistants' Diploma(Credit) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Administrative Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Administrative Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Administrative Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Admitted 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ADN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   48 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ADN Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ADN#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          aDN#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ADN#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ADN#Registered Nurse#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                ADN#Registered Nurse#Associate Degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ADR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          adv diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ADV Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Adv. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Adv. Diploma#Graduate school of Management#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Adv. Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Advance Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Advance Credit Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Advance Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      advance diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Advance diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  148 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ADVANCE DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Advance Diploma and International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             advance diploma graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Advance Diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Advance Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Advance Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Advance Diploma#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Advance Diploma#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Advance Diploma#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Advance Diploma#CBS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advance Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Advance Diploma#HND 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advance Diploma#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Advance Diploma#MBA#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ADVANCE DIPLOMA#POST GRAD DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Advance high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Advance High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Advance Placement and Commonwealth Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advance Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Advance Study Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Advanced   Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Advanced  Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Advanced (AP) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Advanced Academic Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Advanced Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Advanced Academic Diploma#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Advanced American Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Advanced Arabic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Advanced Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Advanced Business Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Advanced Computing Diploma (ACD)#Post Graduate \\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Advanced Culinary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      advanced degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Advanced degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Advanced Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Advanced Degree (Masters) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advanced Degree Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Advanced degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Advanced Degree#IB#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Advanced Degree#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Advanced degree#Master of law#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   60 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   64 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1418 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Advanced DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ADVANCED DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Advanced Diploma\t         Bachelors of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Advanced Diploma          Falls 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Advanced Diploma (Honors Graduate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Advanced Diploma (OCAD)#Advanced Diploma (OCAD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Advanced Diploma (Undergraduate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Advanced Diploma & International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Advanced Diploma and Center of International Studies of Language Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advanced Diploma Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Advanced Diploma Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             advanced diploma granted 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Advanced Diploma of Business (Marketing); Diploma of Business (Marketing) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advanced Diploma of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Advanced Diploma of Tourism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Advanced Diploma recipient 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                advanced diploma)\\n*Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               advanced diploma)\\n\\n\t \\n\t \\n\t Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Advanced Diploma\\n          B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Advanced Diploma\\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Advanced Diploma#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    advanced diploma#advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Advanced diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Advanced Diploma#advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Advanced Diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Advanced Diploma#AP Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Advanced Diploma#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    advanced diploma#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Advanced Diploma#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Advanced Diploma#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Advanced Diploma#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Advanced Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Advanced Diploma#Associates of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Advanced Diploma#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Advanced Diploma#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Advanced Diploma#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Advanced Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Advanced Diploma#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Advanced Diploma#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Advanced Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Advanced Diploma#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Advanced Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Advanced Diploma#Bachelor of Science(B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Advanced Diploma#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   advanced diploma#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Advanced Diploma#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Advanced Diploma#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Advanced Diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Advanced Diploma#Bachelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    advanced diploma#bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Advanced Diploma#bachelors diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Advanced Diploma#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Advanced Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Advanced Diploma#BS#Advanced Post Graduate Diploma#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Advanced Diploma#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Advanced Diploma#C. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Advanced Diploma#C.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advanced diploma#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advanced Diploma#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advanced Diploma#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Advanced Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ADVANCED DIPLOMA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Advanced Diploma#Diploma#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Advanced Diploma#Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Advanced Diploma#Diplomas 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Advanced Diploma#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Advanced Diploma#Higher National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Advanced Diploma#Human Resources Diploma#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Advanced Diploma#IB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Advanced Diploma#International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Advanced Diploma#International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ADVANCED DIPLOMA#IT DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Advanced Diploma#Master#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Advanced Diploma#Masters#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Advanced Diploma#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Advanced Diploma#National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Advanced Diploma#of Arts#Advanced Diploma#of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Advanced Diploma#school (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Advanced Diploma#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Advanced Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Advanced Electricity Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Advanced Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Advanced Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Advanced H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Advanced High Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Advanced High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Advanced High school Diploma     Marshall High school Graduation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Advanced Honor Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advanced Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Advanced International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       advanced level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Advanced level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Advanced Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ADVANCED LEVEL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Advanced level Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Advanced Level Certifications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Advanced Level Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ADVANCED LEVEL DIPLOMA#ASSOCIATES DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Advanced Level GCE#B.Sc#M.Sc. & Dipl.\\nEng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Advanced Level High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Advanced Level#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Advanced Level#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Advanced Level#International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   advanced level#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Advanced levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Advanced Management Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Advanced Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Advanced Math and Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Advanced Placement Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Advanced Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Advanced Post Graduate Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Advanced Professional Diploma#Associate of Arts (AA)#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Advanced Project Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advanced Project Management Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Advanced Project Management Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Advanced Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Advanced Russian Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Advanced school of Business and Management#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Advanced Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advanced Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Advanced Studies Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Advanced studies diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Advanced studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  358 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ADVANCED STUDIES DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Advanced Studies Diploma (AP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Advanced Studies Diploma Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Advanced Studies Diploma rec'd 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Advanced Studies Diploma#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Advanced Studies Diploma#AP Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Advanced Studies Diploma#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Advanced Studies Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advanced Studies Diploma#Associates of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Advanced Studies Diploma#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Advanced Studies Diploma#Bachelor of Arts#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Advanced Studies Diploma#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Advanced Studies Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Advanced Studies Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Advanced Studies Diploma#International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Advanced Studies Diploma#IT#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Advanced Studies high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Advanced Studios Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advanced Study Degree#Master equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Advanced Technical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Advanced Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ADVANCED UNVERSITY DEGREE \\nMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Advanced Vocational Diploma (B.T.S#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Advanced with Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Advanced/Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Advancement of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Advances Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Advertising Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Advertising Design Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Advertising, A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     AE &  Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AEET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AEMT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Aeronautical Mechanics Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Aeronautical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Aerospace 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Aesthetics Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Aesthetics Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AET Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AFB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AFB, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Affairs#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AFFILIATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Afghanistan (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AFILIATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AFMS#Bachelor of Science#Associate of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AFRICA\tDIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AFRICAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AFSO#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AGACNP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AGC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AGEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AGER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Aggressively pursing degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Agricultural Engineer Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Agriculture Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Agriculture Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Agriculture Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Agromechanics Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Agr�gation d'anglais 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AGS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AHIMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AHS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AIB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          AIB Banking and Finance Diploma#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AIB Fundamentals of Banking Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AIC Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AIC Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AICE Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AICM#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AIFS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Aiken S.C.\\n\t\t\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AIP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AIPE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Airframe and Power plant Maintenance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Airframe and Power plant. Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AIRS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AISD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AISSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AIT Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AIU#M.S. Degree#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Akarsu. B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AKRON#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AL Degree#BS of\\nScience#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AL. A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AL#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AL#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AlabamaMaster's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ALAT#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ALB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ALB (equiv. to BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ALB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            albany, ny\\nassociates of science#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ALBUMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ALEXANDRIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Alexandria VA (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Alexandria, Va. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ALI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allied Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ALM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ALM#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AMEDDC&S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AMEP Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             American 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          American Accreditation of Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     American Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      American MBA (Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AMERICAN UNIVERITY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AMERICANUNIVERSITY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AMI#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     AMIETE.Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AMP - MANAGEMENT DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Amsterdam Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AMU#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AMU#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An assiciate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and Computer Repair Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and Graduate Diploma#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and Investigation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and MS#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and Sciences. Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and Technologies (NIIT)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Andover Juris Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Andrews          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Animation of Culture\\nDegree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ANNANDALE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ANOVA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ANSI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Anticipate completing Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Anticipate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Anticipate earning AAS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Anticipated B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Anticipated BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Anticipated date of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Anticipated Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Anticipated Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Anticipated Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Anticipating Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Anticipating MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AOCIQTSYS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AOS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   43 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AOS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AOS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Aossociate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AP Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AP REGENTS DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AP#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  APA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                APA accredited Doctorate degree#Psy.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            APC and Master's\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       APEL Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  APG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  APO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              App. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 APPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Appliance Repair (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Applications Programming Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Applied A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Applied Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Applied Arts Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Applied Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Applied Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Applied Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Applied Associate Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Applied Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Applied Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Applied Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Applied Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Applied Associates Degree (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Applied Associates Degree#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Applied Associates in Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Applied Associates of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Applied Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Applied Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Applied Associates of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Applied Association Science Degree (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Applied Banking Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Applied Behavioral Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Applied Computer Science Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Applied Math B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Applied science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      APPLIED SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Applied Science and Computer Networking     Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Applied Science Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Applied Science Associate's Degree#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Applied Science Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Applied Science Associates Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               APPLIED SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Applied Science Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Applied Science of Paralegal Studies Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Applied Science#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Applied Sciences (SEAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Applied Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Applied Scientist Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Applied Scientist Degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Apply Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Apprenticeship 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Apprenticeship of Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  APQP#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Aprenticeship Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                APRIL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              April)\tDoctor of Philosophy Degree#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Aptech , professional diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       APTECH#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Arabic Language Proficiency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Architect Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Architectural Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Architectural Drafting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Architectural Drafting Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Architectural Drafting Technology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Architectural Technology Diploma#Diploma............................... 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ARCHITECTURE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Architecture and Urbanism Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Area of concentration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Area of Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Area of study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Area of Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AREA OF STUDY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Areas 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Areas of expertise#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Areas of Interest#Master of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ARGOSY#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ARLINGTON 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Art and Advertising Design Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Art Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ARTIST DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Arts & Science Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Arts and Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Arts Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Arts diploma#H.S. diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Arts High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Arts of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Arts of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Arts#Associate of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1467 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AS\tAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AS (Incomplete) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AS and AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AS Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AS COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            As Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  101 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AS Degree#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AS Degree#AS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AS degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AS degree#Bachelor of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AS Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AS Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AS degree#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AS Degree#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AS degree#CC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AS Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AS Degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AS degree#RN) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AS OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AS of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AS of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AS Transfer Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 As-\\nsociate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AS, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AS, engineering Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AS. (Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           As. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AS. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     As. Degree#T.A.S#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AS.(Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AS.BA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AS/BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AS#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AS#AA, Engineering degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AS#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AS#AAS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AS#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AS#AS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AS#AS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AS#AS#BS#BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AS#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AS#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AS#Associate of Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AS#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AS#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AS#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AS#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AS#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AS#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AS#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AS#BA#OTHER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AS#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AS#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AS#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AS#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AS#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AS#Bachelor�s of Administration (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AS#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AS#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AS#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AS#degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AS#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       AS#diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AS#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AS#Graduate   \t    \t\tBS#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AS#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AS#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AS#Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AS#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AS#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         AS#MS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AS#NVCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ASA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ASA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ASB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ASB#Computer Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ASc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ASc Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ASc. Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ascociate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASCP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ASCS#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ASE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ASE Master Automotive Technician, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ASEET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ASIS#MASTER OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ASL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ASL Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASLA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ASMET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ASN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ASN Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ASN Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASN#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Asociate degree#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Asociated Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Asociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ASP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ASP#ETL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Aspiring Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ass 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ASS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ASS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ASS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ASS Sci 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ass-Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ass.   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ass. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ass. Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ass. of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ass.Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Assc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Assc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Assciate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Assciates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Asscoiates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ASSCOSIATES DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ASSecletes 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Assicates Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Assistance degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Assistant Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Assistant Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Assistantship of Family Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Assisted Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Assoaciates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Assoc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Assoc Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Assoc of Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Assoc of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Assoc of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Assoc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Assoc. Degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Assoc. of Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Assoc. of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Assoc. of Applied\\nScience \tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Assoc. of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Assoc. of Arts#Bachelor of Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Assoc. of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ASSOC. OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Assoc. Of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Assoc. Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Assoc#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASSOCAITE OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ASSOCAITES DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Assocaites of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Assocate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   37 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 4894 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ASSOCIATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   85 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate\t BS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate\tof Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate \tdegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate     \\n   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate   \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate   Arts   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ASSOCIATE   DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate   Degree#AOS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate   Degree#B.S.N   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate   Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate   Degree#Masters   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate   of   Applied   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate   of   Applied   Science#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate   of   Applied  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate   of   Arts   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate   of   Arts   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate   of   Occupational   Studies,   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate  Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ASSOCIATE  DEGREE  (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate  Degree (ADN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate  Degree#Higher National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate  of  Applied  Science  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate  of  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate  of  Arts  (A.A.) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate  of  Arts  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate  of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate  of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate  of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate - Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate (A.A.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate (AA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate (AAS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate (Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate \\n          of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate \\n\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate \\n\\nof Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate \\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate \\nof Applied Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate \\nOf Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate \\nof Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate & Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate & B.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate & B.S Degree#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate & Bachelors of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate & Bachelors of Science#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate AAS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Accounting Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Aeronautical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Allied Health Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate and Bachelor Degree#M.A. and Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate and Science A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Applied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Applied Arts (AAA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Applied Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Applied in Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Applied of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate Applied Science (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate Applied Science (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Applied Science (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ASSOCIATE APPLIED SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Applied Science Degree#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Applied Science Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Applied Science#Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Applied Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Applied Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate Applied Sciences (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Arts (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   33 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Arts Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Arts Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Arts of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Arts#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Bachelor Degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Bachelor of Design#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Board of Governors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ASSOCIATE BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate Business Degree#CEFAM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Business Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Certificate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate College Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Credential (CDA)#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Culinary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Culinary Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Curator of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   49 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  593 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 6210 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ASSOCIATE degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ASSOCIATE Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ASSOCIATE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   93 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate Degree\t\t        Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate degree    (ECTT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate Degree   \\nAssociate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree   High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree  (CIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate degree - Business (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ASSOCIATE DEGREE - SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ASSOCIATE DEGREE ; 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate degree ' 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree (A.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate degree (B.T.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree (HND) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree (pending) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree \\n  Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree \\n A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree \\n Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Degree \\n Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree \\n Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree \\n Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree \\n\\nA.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Degree \\n\\nA.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree \\n\\nA.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Degree \\n\\nAA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate Degree \\n\\nAA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree \\n\\nAssociate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate Degree \\n\\nAssociate in Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree \\n\\nAssociated Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree \\n\\nAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Degree \\nA S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Degree \\nA.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Degree \\nA.O.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree \\nAAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree \\nAssociate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree \\nAssociate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate degree \\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Degree A.A.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree A.S.E.E.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree AA#Associate Degree AFFILIATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree and Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate degree Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate Degree Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate degree Architectural 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree Associate degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree Associate of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree Associated Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree Associates Degree#Associate Degree AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree G/S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Degree Horticulture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate degree Hospitality of management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree in Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate Degree Nursing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree of Applied \tScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate Degree of Applied Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate degree of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   51 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree of Applied Science (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Degree of Applied Science (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate degree of Applied Science A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Degree of Applied Science Advance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Degree of Applied Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Degree of Applied Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree of Applied Science#IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Degree of Applied Science#SWRMC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Degree of Art (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate degree of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Degree of Business administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate degree of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree of Criminal Forensic Technology of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate Degree of criminology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Degree of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree of HVAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree of International Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate degree of London Chamber of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate degree of nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree of Nursing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree of Occupational Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree of Occupational Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree of Psychological and Sociological Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Degree of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   43 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Degree of Science#Bachelor of Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate degree of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate Degree of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Degree of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree of Specialized Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree of Telecommunication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Degree of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ASSOCIATE DEGREE PROGRAM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree RN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate Degree science of art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate degree: 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Degree? ?????????????????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree?????????????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate degree. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate degree/ Brevet de Technicien Superieur 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree\\n\tA.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree\\n\tA.A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree\\n\tA.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree\\n\tAA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree\\n\tAAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Degree\\n\tAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree\\n\tAssociate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree\\n\tAssociate of Occupational Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree\\n\tAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree\\n A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Degree\\n A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree\\n A.A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree\\n Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree\\n\\nA.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree\\nA.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree\\nA.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree\\nAA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree\\nAAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Degree\\nAssociate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree\\nAssociate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree\\nAssociate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree\\nAssociate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree\\nAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree\\nAssociates of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree#10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Degree#A.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Degree#A.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree#A.A.S Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree#A.D.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree#A.O.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#A.S.E.E.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#A.S.F.C.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree#A.S#Bachelor Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Degree#A.S#E.M.M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  associate degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree#AA Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#AA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate degree#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASSOCIATE DEGREE#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Degree#AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Degree#AAS#Assoc. of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#AAS#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree#Academy of Business and Finance#High School Diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Degree#Accounting Vocational Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#ADN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate Degree#Advance Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate degree#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Degree#AFFILIATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree#AL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#AOS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree#Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree#ARRT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#AS degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Degree#ASB degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ASSOCIATE DEGREE#ASSOCIATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    associate degree#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate degree#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   53 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Associate Degree (Higher Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Degree#Associate Degree of Specialized Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree#Associate Degree#AA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Associate Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree#Associate Degree#Associate Degree#Associate#Bachelor#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#Associate Degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree#Associate Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree#Associate Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree#Associate Degree#CISA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#Associate Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Degree#Associate Degree#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree#Associate Degree#High School Diploma#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Associate Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate degree#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#Associate of Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Degree#Associate of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#Associate of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Degree#Associate of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate degree#Associate of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#Associate of Science Degree (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#Associate of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Degree#Associate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#Associate#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Degree#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate degree#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Associates Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate degree#Associates of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Degree#B.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Degree#B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Degree#B.A. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Degree#B.S.N degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Degree#B.Sc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  associate degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ASSOCIATE DEGREE#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#Bachelor  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate degree#Bachelor and Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree#Bachelor Arts#MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Bachelor Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#Bachelor Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Degree#Bachelor of Arts ( B.A ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree#Bachelor of Arts (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Degree#Bachelor of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#Bachelor of Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Degree#Bachelor of Science (BS)#Master of Science (MS)#Doctor of Philosophy (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#Bachelor of Science (Bsc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree#Bachelor of science Occupational Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate degree#Bachelor of Science#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree#Bachelor of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#Bachelor or Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree#Bachelor's Degree#Associate Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree#Bachelor's Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#Bachelor's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Bachelor's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree#Bachelor's Degree#Master's Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate degree#bachelor#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Bachelors' degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Bachelor�s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree#BOMI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Degree#Bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate degree#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#BS#BS, Degree\\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate Degree#Business Administration Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate Degree#Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate degree#business studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate degree#City & Guilds. Diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Degree#Culinary arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Degree#Degree of Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Degree#Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree#degree#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree#Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             associate degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   39 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Degree#Diploma and advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Degree#Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#Diploma#Criminal justice Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate Degree#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree#Dipoma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate Degree#Doctorate#None 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate degree#GA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#GPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Degree#GRADUATED#Bachelor�s Degree#Bachelor�s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Degree#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#High School (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 associate degree#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate degree#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate degree#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate degree#High School diploma and graduated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#High School Diploma/G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree#High School Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate Degree#High School Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate degree#High school of Atakpame#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree#High School\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree#Higher Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Degree#HVAC Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree#HVACR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Degree#ICT#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree#in D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree#Legal Secretary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Degree#LPN Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#Lycee Williams petty, high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree#M.A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate Degree#Master of Science Microbiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Degree#Master's Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree#MD#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree#None 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Degree#NVCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           ASSOCIATE DEGREE#PARALEGAL          AAS#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree#Post graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Degree#POSTDOCTORAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degree#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Degree#RET'S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree#RN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate Degree#RN and Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree#Secretarial Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Degree#Specializing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Degree#T.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Degree#TESST#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Degree#UMUC (BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Degree#UMUC#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Degree#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Degree#US 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degree#Vocational Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate DegreeAssociate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ASSOCIATE DEGREES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate Degrees A.A.S#A.A.S#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate degrees#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Diploma#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Diploma#Diploma B.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Graduate Professor of Business Strategy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Graduate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate In Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate in Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate in arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate in Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate in Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   44 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate in Arts degree (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate in Arts Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate in Arts degree#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate in Arts Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate in Arts Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate in Arts Degree#MCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate in Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate in Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate in Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ASSOCIATE IN SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate in Science degree (A. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate in Science Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate in Science degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate in Science Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate in Science Degree#National Technical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Information Processing and Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate Marine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of \t\t\t\t  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of  Applied Science  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of  Business A.A\\n    Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of  Nursing and Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of  Pshychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of  Science Instructor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of  science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of \\nApplied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of \\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of \\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Accounting & Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Accounting#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Administrative Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Administrative Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Agricultural Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Allied Health Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Allied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Ap\\nAssociate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Aplied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of applied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASSOCIATE OF APPLIED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        ASSOCIATE OF APPLIED \t\t\tSCIENCE DEGREE#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Applied  Science (A.A.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied \\nSciences (AAS) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Applied Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Applied Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Of Applied Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Applied Arts (AAA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Applied Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Applied Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Applied Business#Associate of Science#Bachelor of Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Applied Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Applied Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Applied General 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Applied Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Applied Military Intelligence#Master of Public Administration (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Applied of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Applied Scie 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Applied Scienc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of applied science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Applied science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 3068 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ASSOCIATE OF APPLIED SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   53 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Applied Science \t\t\tCulinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Applied Science  (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Science  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Applied Science - (A.A.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Applied Science - Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Science ( A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Applied Science (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Applied Science (A.A.S.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Applied Science (A.A.S.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Science (A.A.S.) General Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Science (A.A.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASSOCIATE OF APPLIED SCIENCE (A.A.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Applied Science (A.A.S) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Applied Science (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Applied Science (AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Applied Science (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   60 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Applied Science (AAS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ASSOCIATE OF APPLIED SCIENCE (AAS) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Science (AAS) Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Applied Science (AAS)#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Science (AAS)#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Applied Science (AAS)#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Applied Science (AAS)#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Applied Science (AAS)#Doctor of Medicine (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Applied Science (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Applied Science (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Applied Science (EET) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Applied Science \\nDegree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Applied Science & Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ASSOCIATE OF APPLIED SCIENCE & BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Applied Science A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Applied Science AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science AAS#AAS IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Applied Science Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Applied Science and Associates or Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Science and Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Applied Science and Technology (ASAST) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Science ASSOCIATE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Applied Science Bachelor Management#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Science Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Applied Science Cibersecurity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Applied Science Criminal Justice#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Applied Science Cybersecurity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  associate of applied science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of applied science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of applied science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   48 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  605 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Of Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ASSOCIATE OF APPLIED SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Applied Science Degree     Network Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ASSOCIATE OF APPLIED SCIENCE DEGREE (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Applied Science Degree (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ASSOCIATE OF APPLIED SCIENCE DEGREE (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Applied Science Degree (Administration of Justice) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Applied Science Degree {AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Of Applied Science Degree A.A.S\\n\\nAssociate Of Science Degree A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Of Applied Science Degree A.A.S\\nAssociate Of Science Degree A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Of Applied Science Degree A.A.S#Associate Of Science Degree A.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Applied Science degree Applied Geography 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Applied Science Degree Culinary arts\\n\\nAssociates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Applied Science Degree Culinary arts\\nAssociates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Applied Science Degree(AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                ASSOCIATE OF APPLIED SCIENCE DEGREE/MEDICAL ASSISTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Applied Science degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Applied Science Degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Science Degree#A.A.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Applied Science Degree#A.A.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science Degree#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Applied Science degree#Associate of Applied Science (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science Degree#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Applied Science Degree#Associate of Science Degree#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Applied Science Degree#Associate of Science#Bachelor Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Applied Science Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Applied Science Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Science Degree#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Applied Science Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Applied Science Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Applied Science Degree#Bachelors of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Applied Science Degree#C.A.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Applied Science Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Applied Science Degree#degree#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Applied Science Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science Degree#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Applied Science degree#Honors Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Applied Science degree#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Applied Science Degrees/CIS (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Applied Science Dental Hygiene 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Applied Science Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Applied Science E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Applied Science H.R 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science Information Security (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Applied Science MEDICAL TECHNICIAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science Networking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Science Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Applied Science Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science of Intelligence Operations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Science Paralegal Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Applied Science Physical Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Applied Science Radiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Science Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science, Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Applied Science: (AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science: Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Applied Science: Administration of Justice#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Applied Science: Paralegal Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Applied Science's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Applied Science(AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Applied Science)\\n        (AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science\\n  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Applied Science\\nAAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Applied Science\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Applied Science\\nDegree#Diploma of Licensed Practical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Applied Science#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Applied Science#A.A.S.E.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Applied Science#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Applied Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Science#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Science#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            associate of applied science#Associate of applied science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Applied Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Applied Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Applied Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Applied Science#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Applied Science#Associate's Degree\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Applied Science#Associate\\'s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Applied Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Applied Science#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Applied Science#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Applied Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Applied Science#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Applied Science#Bachelor of Applied Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Applied Science#Bachelor of Arts#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Applied Science#Bachelor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Applied Science#Bachelor of Hospitality Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Applied Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Science#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Applied Science#Bachelor of Science#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Science#Bachelor of Science#Master of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Applied Science#Bachelor?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Applied Science#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Applied Science#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Applied Science#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Applied Science#Bachelors of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Applied Science#Bachelors of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Applied Science#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Science#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Applied Science#CNA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Science#CNA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Applied Science#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Applied Science#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Applied Science#degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASSOCIATE OF APPLIED SCIENCE#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Science#diploma#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Applied Science#Diploma#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Applied Science#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Applied SCIENCE#GRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Science#Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Applied Science#Graphic Design(Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     associate of Applied Science#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Applied Science#high school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Applied Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Applied Science#HVAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Applied Science#Intelligence Operations Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Applied Science#J. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Applied Science#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Applied Science#M.D          \\n*Ma�tres en Droit 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Applied Science#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Applied Science#Master's Degree#U.S. Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Science#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Applied Science#Masters CyberSecurity - UMUC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Applied Science#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Applied Science#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Applied Science#P.A. of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Applied Science#Programming Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Science#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Applied Science#RN Bachelorette Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Applied ScienceDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  120 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Applied Sciences (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Sciences (AS)#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Applied Sciences (Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Applied Sciences Certified 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Applied Sciences Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Sciences degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Applied Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Applied Sciences Degree (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied Sciences Degree (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Applied Sciences Technical Professional Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Applied Sciences#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Applied Scinece Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Applied Secretarial Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Applied studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Applied Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Applied Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Applied, Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Applied\\n          Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Applied\\n          Science Degree (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Applied\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Applied\\nScience Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Applied\\nScience#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  169 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Art (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ASSOCIATE OF ART (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Art (A.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Art (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ASSOCIATE OF ART (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Art & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Art and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Art and Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Art and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Art and Social Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Art Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Art Customer Relations#Bachelors of Art Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Art degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   44 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Art Degree#CIS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Art degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Art Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Art Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Art, AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Art's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Art's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Art/ Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Art\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Art#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Art#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Art#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Art#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 4562 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ASSOCIATE of ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ASSOCIATE OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   78 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Arts \t\t\t\tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts          Govt. Degree#AAS) Associate of applied science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Arts   Aviation. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts  \\n\\nAssociate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Arts (A A) degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   48 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Arts (A.A. Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Arts (A.A.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Arts (A.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Arts (A.A) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Arts (A.A) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts (A.A)#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Arts (A.A#Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ASSOCIATE OF ARTS (A.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts (A.A#Bachelor of Information Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts (A.A#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts (A.A#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts (A.S#VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Arts (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   57 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Arts (AA) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Arts (AA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts (AA)#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Arts (AA)#Associate of Arts (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Arts (AA)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Arts (AA)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Arts (AA)#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Arts (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Arts (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts (AS)#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Arts (Business) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Arts (Journalism). Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts (Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Arts /Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts & Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts & Liberal Arts Degree#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Arts & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ASSOCIATE OF ARTS & SCIENCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Arts & Sciences (AA&S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Arts & Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts & Sciences, Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts & Sciences#Associate of Arts & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts AAHC/MR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Arts Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts and Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Arts and Associate of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Arts and Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   49 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Arts and Science (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Arts and Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts and Science\\nAssociate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   62 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Arts and Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Arts and Sciences (A.A.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts and Sciences (A.A.S#Associate of Arts and Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Arts and Sciences (A.A.S#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts and Sciences (A.A.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Arts and Sciences (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Arts and Sciences (AAS)#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Arts and Sciences (AAS)#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts and Sciences (AAS)#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                associate of arts and sciences degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Arts and Sciences degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Arts and Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts and Sciences Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Arts and Sciences#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts and Sciences#AAS#Associate of Arts and Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Arts and Sciences#Associate of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts and Sciences#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Arts and Sciences#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Arts and Sciences#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Arts Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts Ballet 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Arts Culinary arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts cum laude 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             associate of arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  109 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  770 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ASSOCIATE OF ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Arts Degree\tNewport 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Arts Degree (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Arts Degree (A.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ASSOCIATE OF ARTS DEGREE (A.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Arts Degree (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts degree \\n\\nAssociate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Arts Degree earned 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Arts degree\\n\\nHigh School degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Arts Degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Arts Degree#Associate of Arts Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Arts Degree#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts Degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Arts Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts Degree#Bachelor of Arts Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Arts Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Arts degree#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Arts Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Arts Degree#Bachelor Of Science#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Arts degree#Bachelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Of Arts Degree#Bachelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Of Arts Degree#Bachelor's of Science Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts Degree#Bachelors of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Arts Degree#Bachelors of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Arts degree#BS\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Arts Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Arts Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts Degree#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Arts Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Arts Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Arts degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Arts Degree#Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts degree#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts Degree#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts Degree#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Arts Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts General Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Arts Grad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Arts HEALTHCARE MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Arts Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Arts HVAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Arts Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts Massage 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Arts Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Arts Nursing RN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts Radiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Arts Transfer Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Arts, (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts, degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Arts: A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts: Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts\\nAssociate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Arts#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Arts#A.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Arts#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts#A.A#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Arts#A.A#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Arts#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts#AA#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts#AA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Arts#AABA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Arts#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Arts#Advanced Level Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts#associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Arts#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts#Associate degree.\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Arts#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Arts#Associate of Arts transfer degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Arts#Associate of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Arts#Associate of Arts#Associate of Arts#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Arts#Associate of Arts#Associate of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Arts#Associate of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Arts#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts#Associate of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Arts#Associate of Science#BA#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       associate of Arts#Associate of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Arts#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Arts#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Arts#Associate#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts#Associates of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Arts#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Arts#B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Arts#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASSOCIATE OF ARTS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of arts#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Arts#Bachelor of Arts#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts#Bachelor of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts#Bachelor of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Arts#Bachelor of Mass 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Of Arts#Bachelor Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Arts#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Arts#Bachelor of Science#Associate of Applied Science#Diploma#Diploma High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate Of Arts#Bachelor Of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts#Bachelor of Science#DOD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Arts#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Arts#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Arts#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Arts#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Arts#Bachelor�s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Arts#Banking Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Arts#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Arts#BBA or B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Arts#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Arts#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Arts#Business of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Arts#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Arts#degree. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of ARTS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts#General Education degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Arts#Graduate#Office Administration Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts#High School Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Arts#Higher National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Arts#JOB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Arts#Maryland 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Arts#Master Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Arts#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Arts#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Arts#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Arts#Secretarial Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Arts#Secretarial Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Arts#StudiesAssociate's Degree\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Arts#TESOL) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of AutoCad Drafting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Baking and Pastry Arts Specialty 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Biblical Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Biblical Studies degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Biological Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Biology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Biotechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   98 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASSOCIATE OF BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Business Administration \\nAssociate of Network Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Business Administration & Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Business administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Business Administration#B.B.A-M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Business Administration#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Business and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Business and Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Business Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of business degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Business Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Business Management and Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Business Management with Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Business Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASSOCIATE OF BUSINESS SCIENCE#DEAN'S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Business Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Business#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Bussiness Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Civil Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Commercial Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Computer Application 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Computer IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Computer Operations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Computer Programing \\nAssociate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Computer Programming 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Computer science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Computer Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Computer Science\\nAssociate of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Computer Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Construction 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Contracts Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Criminal Justice#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Culinary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Culinary Art (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Culinary Arts          Damascus 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Culinary Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Cyber Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Diagnostic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Drafting and Design \\nITT#Associate#High School Diploma#Master Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Electronic Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Electronics Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Electronics\\nEngineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of electronics#Bachelor of electronics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Engineering (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Engineering Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Engineering Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Engineering\\n\tFanshaw Collage of Applied Arts and Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Engineering#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Fashion Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Fine Art degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Fine Art Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Fine Arts (A.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Fine Arts (AFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Fine Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Fine Arts#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Fine Arts#Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Format Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of General 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of General Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of General Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of General studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of General Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of General Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of General Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Graphic Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Health Profession 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Health Sciences Student#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Health Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Health Services#Bachelor of Health Administration#Master of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Human Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Human Service Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Human Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Intelligence Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of International Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Landscape Horticulture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Liberal Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Liberal Arts & Bachelors of Human Resources Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Liberal Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Liberal Arts Degree A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Liberal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Liberal\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Life Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Life Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Marketing and Publicity Designer Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Media Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Network Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Network Systems Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Nursing degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Occupational 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Occupational Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of occupational science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Occupational Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ASSOCIATE OF OCCUPATIONAL SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Occupational Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Occupational Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Occupational Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Occupational Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   37 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Occupational Studies Business Management and Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of occupational Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Occupational Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Of Occupational Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Occupational Studies Personal Training Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Occupational Studies#Business Studies#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Occupations Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Office Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Operational Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Ornamental Horticulture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Of Paralegal 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Paralegal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Pedagogy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Performing Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Police Science#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Pre 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Psychology#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Records Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Religion 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Risk Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 associate of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   39 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 4972 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASsociate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASSOCIATE of SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASSOCIATE OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  145 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science    Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science  \\n\\nAssociate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Science ( A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Science (A. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Science (A.A.S#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   45 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Science (A.S.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Science (A.S.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science (A.S.) Degree#NVCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of science (A.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Science (A.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Science (A.S) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Science (A.S#Bachelor of Arts (B.A#Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Science (A.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science (A.S#VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Science (AA)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Science (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Science (ADN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Science (AOS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   65 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Science (AS) - (Graduate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Science (AS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science (AS)\\n     Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Science (AS)#Associate of Arts (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science (AS)#BS#Master of Science Degree (M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science (AS)#BS#Master of Science Degree (M.Ed#Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Science (ASS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Science (CIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ASSOCIATE OF SCIENCE (SCIENCE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science Aircraft Maintenance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Science and Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Science ASSOCIATE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Science BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Science Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science Business Adminstration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science CS & IT#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          associate of science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  104 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  729 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate Of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ASSOCIATE OF SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Science Degree (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Science Degree (A.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ASSOCIATE OF SCIENCE DEGREE (A.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Science Degree (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Science Degree (ONGOING) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Science Degree / Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Science Degree A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Science Degree is Correctional Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Science Degree of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Science degree\\nGraduate#Associate of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Science Degree#A.D.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Science Degree#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of science degree#A.S#Associate of Science Degree#Bachelor's of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science Degree#A+ certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science Degree#Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science degree#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science Degree#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Science Degree#AS Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Science Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Science Degree#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science degree#Associate of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science Degree#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science degree#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Science degree#Associate's degree#LPN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Science Degree#Associates of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Science Degree#Associates of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science degree#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Science Degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science Degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Science Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Science degree#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Science Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science degree#Bachelor of Science#Associate of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Science Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Science Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science Degree#Bachelors of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science Degree#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Science Degree#BSN degree#Bachelor of Science#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Science Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science Degree#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Science degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Science Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Science Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Science degree#HS#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science Degree#master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science degree#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science Degree#Medical Billing & Coding Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Science Degree#NOVA#High School Diploma (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science Degree#Post Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Science Degree#Post Baccalaureate Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of science degree#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science degree#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science Degree#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Science Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Science FIRE SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science General Business (Honors Graduate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science General Studies degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science Higher National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Science Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Science inInformation Technology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science Medical Assisting Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science MT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Science Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Science of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Science of Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Science Office Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ASSOCIATE OF SCIENCE PROGRAM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Science Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science Security Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Science Veterinary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ASSOCIATE OF SCIENCE WITH A MAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science, A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science, ABA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Science(AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Science****************************** 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science\\n\\n\\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Science\\n\\n\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science\\nAssociate of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science\\nAssociate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Science\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Science#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Science#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Science#A.A.S.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Science#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Science#A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Science#A.S. degree#Registered Nurse#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science#A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Science#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ASSOCIATE OF SCIENCE#ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Science#ADN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Science#AS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Science#ASE) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Science#ASN) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Science#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Science#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science#Associate Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science#Associate of Applied Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science#Associate of Applied Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Science#Associate of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science#Associate of Arts#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Science#Associate of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Science#Associate of Science Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Science#Associate of Science Degree#Bachelor's degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Science#Associate of Science Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science#Associate of Science#Associate of Science#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science#Associate of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Science#Associate of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of Science#associate's degree before high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science#Associate\\'s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Science#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Science#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science#B.A.'s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Science#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Science#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Science#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science#Bachelor of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASSOCIATE OF SCIENCE#BACHELOR OF BUSINESS ADMINISTRATION, ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Science#Bachelor of Information System 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Science#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science#Bachelor of Science#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate Of Science#Bachelor Of Science#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Science#Bachelor of Science#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Science#Bachelor of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Of Science#Bachelor Of Science#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Science#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Science#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Science#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science#Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Science#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Science#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of science#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate OF SCIENCE#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science#Bachelors of Science#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Science#Bachelors' of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Science#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Science#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Science#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science#GENERAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Science#Gov't Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of Science#GRADUATED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Science#H.S Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Science#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Science#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science#High School Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Science#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Science#Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science#IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science#JAVA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Science#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science#MBA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of Science#Ministerial 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science#NOVA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Science#NOVA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science#NURSING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science#Phlebotomist Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Science#PHR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Science#Post graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Science#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science#RN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Science#S.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science#S.T.E.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Science#SECREATARIAL OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Science#Secretarial Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Science#understanding of the history of film 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Science#University Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Science#Vocational Degree#Vocational Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of ScienceDec 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of ScienceMajor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Sciences (RN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Sciences degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Sciences Life Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Sciences Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Sciences, A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Secretarial Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of Social Science Psychology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Social Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Social Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Socials Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of Sociology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Specialized Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate of Specialized Technology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Studio Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate of Technology#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate of the 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of the Arts (A.A ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate of the Arts AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of the Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of the Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of the Arts Degree#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of the Arts#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate of the Arts#High School          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate of Theatre Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of Theology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate of Tourism Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate of Travel 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of\\n          Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of\\nApplied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate of\\nApplied Science (EET) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of\\nArts and Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of\\nArts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate of\\nScience (AOS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate of\\nScience Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate of\\nScience#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate of\\nScience#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate of\\nScience#Honor Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate ofApplied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate Paralegal Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Professor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Professor of Biological Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Professor of Clinical Neurology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate Professor of History 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Professor of Psychiatry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate Professor of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Program Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ASSOCIATE RESPIRATORY CARE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate RN Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate s Degree of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate s Degree#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate s Degree#BACHELOR'S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate s Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate s Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate s Degree#High School Diploma#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate s of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate Science (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Science Degree#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Science Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate Science Degree#Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate Science Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate Science Degree#Registered Nurse#A.D.N /RN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate Science of  Nursing degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate Social Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate SS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate Technical Degree#Associate Technical Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate, Computer Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate, Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate, Science (AS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate!&s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate?s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate?s Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate?s of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate?s of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate?s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate' s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate''''s Degree Equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate''''s Degree#AA/AS/AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate'a Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  410 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ASSOCIATE'S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's\t\t\t\t\t\t\t\t\t\tExpected 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate's          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate's   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate's   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate's  degree#I.B.  .. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ASSOCIATE'S - A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate's (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate's (AABA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's (Intermediate Level) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's (Seeking) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate's \\n    Online     CA     Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ASSOCIATE'S \\nDEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate's Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate's Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate's Art of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate's Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate's Criminal Justice Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  211 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2199 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate's DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AssOciate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ASSOCIATE'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   59 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate's Degree       Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate's Degree - A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate's Degree (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's degree (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's Degree (AABA)#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate's Degree (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's Degree (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's Degree (RN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate's Degree \\n          Degree of applied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate's Degree and impact#matriculation#Bachelor's Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's Degree and Maryland High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's Degree AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           associate's degree Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate's Degree Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate's Degree I\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's degree of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's Degree of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's Degree of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate's Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's Degree of Arts and Sciences Granted 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate's Degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's Degree of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate's Degree of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate's Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ASSOCIATE'S DEGREE OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate's Degree of Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate's Degree Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate's Degree Undecided 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's Degree, A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate's Degree, Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's Degree(AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's Degree(AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate's Degree/College Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate's Degree/Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate's Degree\\n\\n\\n\\n\\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate's Degree\\n\\nHigh School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's Degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ASSOCIATE'S DEGREE#A.A.S.)\\nBACHELOR'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate's Degree#A.S., A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's Degree#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate's Degree#AAS#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate's Degree#AAS#Bachelor's Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate's Degree#AAT#AAT#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's degree#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate's Degree#Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's Degree#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate's Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's Degree#ASSOCIATE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's Degree#Associate Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's Degree#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's Degree#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate's Degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          associate's degree#Associate of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate's Degree#Associate of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's Degree#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate's Degree#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's degree#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's Degree#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate's Degree#Associate's Degree (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate's degree#Associate's degree#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate's Degree#Associate's Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's degree#Associate's degree#Bachelor of Fine Arts#B.F.A#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's degree#Associate's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's Degree#Associate's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's Degree#Associate#Homeland Security Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate's Degree#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate's Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's Degree#Associates of Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's Degree#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's Degree#Associates of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate's Degree#Associates#A.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate's Degree#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate's Degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ASSOCIATE'S DEGREE#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's degree#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate's degree#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate's degree#Bachelor of Construction Management#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's degree#Bachelor of Science (BS)#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate's degree#Bachelor of Science#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate's degree#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate's Degree#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 associate's degree#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate's Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate's Degree#Bachelor's Degree of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate's degree#Bachelor's degree#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's Degree#Bachelor's Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's degree#Bachelor's degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate's Degree#Bachelor's\\n     Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate's degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's Degree#Bachelors#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate's Degree#Bachelors#Bachelors Degree#Bachelor's (BBA)#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate's Degree#Bachelors#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's degree#Business Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ASSOCIATE'S DEGREE#CODING DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate's degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate's Degree#degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate's degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate's Degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate's Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate's Degree#Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate's Degree#Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate's Degree#Diploma#S.A.\\n\\n\\nProgramming Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's Degree#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate's Degree#General Education Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      associate's degree#Gold Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate's Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's degree#Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's Degree#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate's degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's Degree#High School          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's degree#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's degree#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's Degree#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's Degree#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ASSOCIATE'S DEGREE#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate's Degree#high school diploma and associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's Degree#High School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               associate's degree#HIM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate's Degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate's Degree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate's Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's Degree#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's Degree#Medical Billing and Coding Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate's Degree#Network Systems Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate's Degree#Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's Degree#registered nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's Degree#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        ASSOCIATE'S DEGREE#SCIENCE          GRADUATED-          Degree obtained (A.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate's Degree#Tutor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's Degree#UDC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's Degree#Undergraduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate's Degreet of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate's Expected 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate's General Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate's General Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's in Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's Intelligence Operations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate's of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's of Applied Science (A.A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate's of Applied Science (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate's Of Applied Science: Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate's of Applied Science#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's of Applied Sciences (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate's of Applied Sciences and Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate's of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's of Art and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate's of Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   41 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ASSOCIATE'S OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's of Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate's of Arts and Sciences Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate's of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ASSOCIATE'S OF ARTS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate's of Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate's of Business Administration Management degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate's of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's of Mortuary Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   33 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate's of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's of Science. \\nDegree#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate's of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's Paralegal 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate's Technical Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate's-Level Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                associate's\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 associate's\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate's\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate's\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ASSOCIATE'S\\nDEGREE#ASSOCIATE'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate's#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate's#A.S#Bachelor's degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate's#Advance diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate's#Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate's#Associates' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate's#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate's#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate's#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate's#Bachelor's#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate's#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate's#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate's#Diploma#Master degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate's#Diploma#Master degree#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's#FInished Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate's#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate's#Ib Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate's#Master's:\tAAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate's#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate(tm)s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ASSOCIATE(tm)S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate/Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate/Diploma#MS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate\\'s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate\\n          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                    Associate\\nDegree??????????????????????????????????????????????????????????????????????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate\\nDegree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate\\nNursing Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate\\nof Applied Science#Bachelors#ADDITIONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate\\nof Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate\\nof Arts Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate\\nof Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate\\nof Communications degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate\\nof Occupational Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate&rsquo;s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate&rsquo;s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ASSOCIATE&rsquo;S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate&rsquo;s Degree Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate&rsquo;s Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate#12th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate#A.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate#A.A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate#A.A.S.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate#A.A.S.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate#A.A.S.), Administration of\\n     Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate#A.A.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#A.A#Bachelor of Music Degree#B.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate#A.O.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate#A.S.A.) degree#Bachelor of Arts (B.A.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate#A.S.B.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate#A.S.S#Associate Degree (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate#A.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#A+ certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate#AA & Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate#AA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   34 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#AAS-Intelligence Collection) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate#AAS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#AAS) Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate#AASN) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#ABA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate#ABILITIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#AOS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ASSOCIATE#APPLIED SCEINCE (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate#Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ASSOCIATE#APPLIED SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate#Applied Science          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ASSOCIATE#APPLIED SCIENCE (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ASSOCIATE#APPLIED SCIENCE (AAS) DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate#Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate#Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   81 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ASSOCIATE#APPLIED SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate#Applied Science Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate#Applied Science Degree#AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#Applied Science degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate#Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate#Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate#AS) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ASSOCIATE#ASSOCIATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate#Associate Degree#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#Associate degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate#Associate of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#Associate of Engineering Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate#Associate of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate#Associate of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate#Associate's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate#Associate#Applied Science Degree#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate#Associate#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate#Associate#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Associate#Associate#Associate#Certified Associate#Associate#Associate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate#Associate#Associate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate#Associate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate#Associate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#Associate#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate#Associate#Interpreting and Translating Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate#B.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#B.Sc., (Honours) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ASSOCIATE#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate#BA#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate#BA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                associate#BA#Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate#Bachelor of Art#MBA/MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate#Bachelor of Computer Information Systems Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate#Bachelor of Electronic Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate#Bachelor of Science Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate#Bachelor of Science Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate#Bachelor of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate#Bachelor of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#Bachelor Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate#Bachelor?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate#Bachelor's Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#Bachelor's\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#Bachelor's\\nDegree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate#Bachelors of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Associate#Bachelors of Science#Masters of Education#Masters of Arts#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#Bachelors#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate#BS#Bachelor of Telecommunication Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate#Business Administration and Management#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate#Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate#CERTIFICATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate#Chartered Accountant 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate#Culinary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate#degree#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate#Diploma Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate#Diploma#High School Diploma#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate#Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate#EUROPE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate#Exterior Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#FCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate#Gov't Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate#High \\nSchool Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    associate#high school          on 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate#High School Diploma#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ASSOCIATE#Higher National Diploma (HND) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associate#HRM) Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     associate#Intermediate#Intermediate#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate#M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#Master of Landscape Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associate#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ASSOCIATE#Master's#ASSOCIATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associate#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate#Masters Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate#MBA Degree#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate#MBA#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate#MS#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associate#NCLEX 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate#None 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate#Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate#NVCC#AS#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associate#PASCAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associate#PFC H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate#Ph.D#Ph.D#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate#Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associate#Specialize Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associate#Specialized Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Associate#Specialized Business Degree#Bachelor of Arts#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate#Specialized technology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associate#Theology (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associate#UMA#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate`s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associateas Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associated Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associated Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associated degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associated Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  108 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ASSOCIATED DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associated degree Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associated Degree of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associated Degree of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associated Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associated Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associated Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associated Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associated Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associated Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associated Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associated Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associated Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associated in Applied Science (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associated in Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associated of Applied \\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associated of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ASSOCIATED OF APPLIED SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associated of Applied Science (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associated of Applied Science (Associate Degree)#TESST of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associated of Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associated of Applied Science(AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associated of Applied Science#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associated of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associated of Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associated of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associated of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associated of Arts Science Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associated of Arts#DM.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associated of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associated of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associated of Science#Associated of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associated of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associated Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associated#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ASSOCIATEDS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 3882 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ASSOCIATES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   60 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates   \\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates   of   Applied   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates   of   Arts   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates   of   Science   (A.S.) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates  \\n \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates  of Arts & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates -- Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates ; Cybersecurity Assoc. of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates 'Degree#Associates 'Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates (A.A.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates (A.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates (AA) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates (AABA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates (FSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates \\n\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates \\nAssociate Science#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates \\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates \\nof Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates \\nSpecialized Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates & B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates & B.S#VA.Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates Accounting   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates and Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates and Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates Applied Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Applied Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ASSOCIATES APPLIED SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ASSOCIATES APPLIED SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates Applied Sciences (AAS Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Art degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Associate Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Bachelors of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Business Administration#Bachelors of Commercial Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Business Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Business Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates Cert 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Contract Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates credits 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Credits#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  468 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 6964 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ASSOCIATES DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   83 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree \t\t\t\t\t\tAdministration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates Degree    \\nTechnical Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Degree   \\nBachelors Degree   X 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Degree  Arts & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates Degree - ???? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ASSOCIATES DEGREE (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree (A.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Degree (AAS)\\n\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Degree (Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree & Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ASSOCIATES DEGREE AA OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates Degree Administration of Justice NVCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Degree and Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates degree Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates Degree Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree Associates \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates degree Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates degree Business Administration#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates degree Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Degree Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree for Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates Degree KEYWORDS BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates degree Liberal Arts of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates Degree Nursing (ADN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates Degree of Allied Health Science#Associates Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Degree of Allied Health Science#Associates Degree#Board of Governor's Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates degree of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   49 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree Of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASSOCIATES DEGREE OF APPLIED SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Degree of Applied Science (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates Degree of Applied Science \\nBachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates Degree of Applied Science of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates Degree of Applied Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree of Applied Sciences and Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree of Applies Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates Degree of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree of Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates degree Of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates Degree of Arts and Sciences Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Degree of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates Degree of Arts#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates Degree of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates dEGREE OF bUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates Degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates Degree of Computer Networking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Degree of Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates Degree of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Degree of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates degree of Liberal Arts specialization Psychology\\n(Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Degree of Network Systems Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ASSOCIATES DEGREE OF NURSING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Degree of Occupational Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree of Occupational Science (AOS)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Degree of Occupational Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   33 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Degree of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Degree of Science#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates Degree of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree of Travel and Tourism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates Degree of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Degree Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates degree Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates degree Unfinished 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Degree- (AACS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates Degree-Administration of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree. A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree................... 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree(IT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree) AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Degree\\n          AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ASSOCIATES DEGREE\\n*Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates Degree\\n\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree\\nAssociates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates degree\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Degree\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates Degree\\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates degree\\nMed tech (MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Degree#A.A.S#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates Degree#A.A.S#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree#A.A#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree#A.A#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree#A.D.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates degree#A+ Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates degree#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates Degree#AAS BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates Degree#AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Degree#AAS#Bachelors Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates Degree#Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#ADN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Degree#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates Degree#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates degree#Applied Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates Degree#Applied Science Associates Degree#T. A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates Degree#Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Degree#Arts of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates degree#Associate degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree#Associate Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree#Associate General Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Degree#Associate of Arts and Sciences#BACHELOR OF SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates Degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree#Associate of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree#ASSOCIATE OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 associates Degree#Associate's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates Degree#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates degree#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Degree#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#Associates Degree#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates Degree#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree#associates of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Degree#Associates of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree#Associates of Occupational Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates Degree#Associates of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates degree#Associates of Science Degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Degree#Assoicates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates Degree#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Degree#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates Degree#BA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#BAA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates Degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Degree#bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Degree#Bachelor Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree#Bachelor O#Bachelor of Finance#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates Degree#Bachelor of Science#Post Graduate  Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Degree#Bachelor s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates Degree#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates degree#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Degree#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates degree#Bachelor's degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree#Bachelor's Degree#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#Bachelor's of Environmental Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree#Bachelor's of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates Degree#Bachelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Degree#Bachelor#Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Degree#Bachelor`s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree#Bachelorate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#Bachelors & Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates degree#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Degree#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates Degree#Bachelors Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree#Bachelors Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Degree#Bachelors degree#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree#Bachelors Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates degree#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates Degree#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                          Associates degree#Bachelors of Science Degree#Associates of Arts Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Degree#Bachelors' degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Degree#Bachelors#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates degree#Bachelors#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates Degree#Bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Degree#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#BSN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates degree#business studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Degree#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#CAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree#CANA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ASSOCIATES DEGREE#COURSEWORK TAKEN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates Degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates Degree#Design of Experiments (DOE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   33 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates degree#Diploma#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Degree#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates Degree#Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Degree#Enter years\\n\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Degree#Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates Degree#Frederick High Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree#G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          associates degree#General Education Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates Degree#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates Degree#High School Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   45 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree#High School Diploma#advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree#High School Diploma#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates Degree#High School Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree#High School\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree#High\\nSchool Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates Degree#Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Degree#Higher National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates Degree#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree#M.A.\\n\\nEXHIBITS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Degree#Marketing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates Degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Degree#Master of Business Administration (MBA)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Degree#Masters of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Degree#Masters#Associates Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates Degree#MD#MD#Higher  Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates Degree#Minor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates degree#National Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates Degree#NVCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates Degree#process of Masters of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Degree#Pursing Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Degree#Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Degree#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Degree#School Graduate#Advanced Diploma Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#Secretarial Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Degree#Small Business Management (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degree#Social Work Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Degree#Standard Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Degrees#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ASSOCIATES DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates diploma#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Fellowship recipient\\nMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates for Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates HVAC Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates in \\n\\n\\nScience Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates in Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates in Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates In Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates in Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates in Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates In Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates in Applied Science Degree#A.A.S.M.E.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates in Applied Science Degree#AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates in Applied Science Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates in Applied Science of Board of Governors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates in Applied Science of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates in Applied Science of Criminal Justice (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates in Applied Science Technical Degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates in Applied Science, (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates in Applied Science. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates in Applied Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates in Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates in Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates In Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates in Arts          Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates in Arts and Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates in Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates in Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   52 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates in Arts degree (A.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates in Arts Degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates in Arts Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates in Arts degree#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates in Arts Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates in Arts of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates in B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates in Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates in OFT#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates in Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates in Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates in Science Degree (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates in Science Degree#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates in Science Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates in Science degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates in Science Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates in Science Diploma (IT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates in Specialized Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Medical Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Occupational Studies#Bachelors of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates Of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of  Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of  Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of  Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of \\nArts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Administration Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Administration of Justice (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Allied Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of applied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Applied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Applied Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Applied Arts & Sciences#Associates#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Applied Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Applied Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Applied Arts degree#Bachelors of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Applied Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Applied Business#Associates of Applied Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Applied Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Applied Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of applied fire science \\nAssociates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Applied Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Applied Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        aSSOCIATES of Applied SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of applied science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  930 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates Of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ASSOCIATES OF APPLIED SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Applied Science (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Applied Science (A.A.S.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Applied Science (A.A.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Applied Science (A.A.S) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Applied Science (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Applied Science (AAS)#Associates of Applied Science (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Applied science (AIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Applied Science and Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Applied Science Bioengineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 associates of applied science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of applied science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of applied science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  135 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates Of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Applied Science Degree Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Applied Science Degree\\n\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Applied Science Degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Applied Science Degree#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Applied Science Degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Applied Science Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Applied Science Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Applied Science Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Applied Science Degree#Systems Network Administration Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Applied Science of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Applied Science of Drafting & Design\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Applied Science of Medical Assisting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Applied Science Personal Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Applied Science, Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Applied Science, Administration of Justice (ADJ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Applied Science, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Applied Science: Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Applied Science.\\nA.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Applied Science(AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Applied Science\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Applied Science#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Applied Science#A.A#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Applied Science#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Applied Science#ACHIEVEMENTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Applied Science#Advanced diploma#high school\\n*Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Applied Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Applied Science#Associate's Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Applied Science#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Applied Science#Associates of Applied Science#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Applied Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Applied Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Applied Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Applied Science#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Applied Science#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Applied Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Applied Science#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Applied Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ASSOCIATES OF APPLIED SCIENCE#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Applied Science#MD#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Applied Science#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Applied ScienceAssociates of Applied ScienceAssociates of Applied ScienceAssociates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   77 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ASSOCIATES OF APPLIED SCIENCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Applied Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Applied Sciences (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Applied Sciences and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Applied Sciences Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Applied Sciences degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Applied Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Applied Sciences Degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Applied Sciences degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Applied Sciences of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Applied Sciences/Networking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Applied Sciences#CACHE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Applied Sciences#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Applied Teaching 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Applied Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Applied\\n          Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Applied\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Applied\\nScience Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Applied\\nScience#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Applies Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Applies Science#Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Applued Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  130 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ASSOCIATES OF ART 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Art (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Art (A.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Art \\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Art & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Art & Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Art and Humanities Degree AA\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Art and Humanities Degree\\nAA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Art and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Art Biological Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Art degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Art Degree#Bachelors of Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Art Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Art Degree#Multimedia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates Of Art in Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Art Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Art's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Art#Associates of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1462 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ASSOCIATES OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Arts (A.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Arts (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Arts (AA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Arts (AA)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Arts (AAIT)#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Arts \\nAssociates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Arts & Ethics Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Arts & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Arts & Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Arts & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Arts & Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Arts A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Arts and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Arts and \\nAssociates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Arts and Bachelors of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   33 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Arts and Science (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Arts and Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Arts and Science ECE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   34 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Arts and Sciences degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Arts and Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Arts and Sciences Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Arts and Sciences Transfer Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Arts Business Administration (AABA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Arts Business Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   34 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  250 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ASSOCIATES OF ARTS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Arts degree - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Arts Degree (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Arts degree (AGS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Arts Degree AA#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Arts Degree Achieved 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Arts Degree and High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Arts Degree Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Arts Degree, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Arts degree: 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Arts Degree\\nAssociates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Arts Degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Arts Degree#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Arts Degree#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Arts Degree#Bachelor Degree (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Arts Degree#Bachelor of Liberal Arts Degree#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Arts Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Arts degree#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Arts Degree#Business Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Arts Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Arts Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Arts Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Arts Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Arts of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Arts of Foundation of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Arts Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Arts. \\n          TechSkills of Sacramento 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Arts/Administration#AA Degree#Bachelors' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Arts\\nBachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Arts\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Arts#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Arts#A.A.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Arts#A.A#B.S.) Bachelors of Science#A.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Arts#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Arts#Associate of Arts and Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Arts#Associate of Arts#Bachelors of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Arts#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Arts#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Arts#Associates of Art- Arts#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Arts#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Arts#Associates of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Arts#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Arts#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Arts#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Arts#Bachelors of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Arts#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Arts#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Arts#Biotechnology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Arts#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Arts#earned 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Arts#WDC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Biblical Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Biblical Studies#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Business administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   90 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ASSOCIATES OF BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Business Administration          Will graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Business Administration (A.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Business Administration, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Business Administration#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Business Administration#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Business and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Business and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Business and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Business Application 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Business curriculum 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Business degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Business Law and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Business Management and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Business Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Business Marketing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of business MGM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Business Studies\\nAssociates of Mid 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Business to 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Business Transfer#Diploma#Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Business/Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Business#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Communication Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Communications Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Computer Information 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Computer Network Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Computer Networking Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Computer Systems Support 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Construction Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Contracts Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Counseling Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Criminal Justice (ADCJ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Culinary Arts Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Cyber Security#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Dental Hygiene 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Drafting and Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ASSOCIATES OF ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Engineering Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of English 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of English Literature and Business Secretary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Fashion Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Fine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Fine Art \\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Fine Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of General 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of General Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of General Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of General Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of General Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of General Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of General Studies Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of General Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Graphic Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Health Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Healthcare 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of History 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Hospitality 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Hospitality Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Human Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Individual Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Information Assurance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of insert degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Intelligence Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Interior Decorating 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of International Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of International Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Juvenile Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Legal Assistant 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ASSOCIATES OF LIBERAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Liberal Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Liberal Art degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Logistics Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Marketing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Media Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Medical Assistant 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Medical Assisting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Medicine Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Mental Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Microcomputers 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Ministry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Network 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Network Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Network System Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Networking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Nursing degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Nursing degree (RN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of occupational 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Occupational Health Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Occupational Health Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Occupational Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Occupational Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Occupational Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Occupational Studies (AoS) Degree#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Occupational Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Occupational Studies#No Degree#No Degree#No Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Paralegal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Phlebotomy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Photography 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Public Health#degree\\n\\nBachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                associates of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1447 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ASSOCIATES OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Science  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ASSOCIATES OF SCIENCE (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Science (A.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Science (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Science (ASN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Science (LPN)#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Science Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Science Administration of Justice#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Science Business Admin Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Science Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  207 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ASSOCIATES of Science DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ASSOCIATES OF SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of Science Degree (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ASSOCIATES OF SCIENCE DEGREE\\nGRADUATED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Science Degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Science degree#Associate of Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Science Degree#Associates of Interpretation of Sign Language 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Science Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Science Degree#Bachelor Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Science degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Science Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Science Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Science Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASSOCIATES OF SCIENCE DEGREE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Science Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Science Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ASSOCIATES OF SCIENCE DEGREE#NURSING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Science Graphic Design Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Science Network and Systems Administration Degree#Bachelor of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Science Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Science, A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Science#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Science#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Science#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Science#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Science#AS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Science#AS#Bachelor of Science#ADMINISTRATION (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Science#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of Science#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of Science#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Science#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Science#Bachelor's of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Science#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Science#Bachelors of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Science#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Science#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates Of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Science#General Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of science#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Science#High school graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ASSOCIATES OF SCIENCE#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Science#Phlebotomy Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Science#TBD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Science#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of ScienceMay#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of Sciences Degree#Associates of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Sciences Degree#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Sciences, Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Sciences#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates of Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates of Social Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of Social Science#Associates of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of Social Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of Social Sciences Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Sociology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates of Sociology degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates of Specialized Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of Sports Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Studio Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of Technology and\\n Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of Technology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates of the 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates of the Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of The Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of the Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates of the Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of the Arts Degree#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates of the Arts#AAGS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Ultrasound 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates of Web Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates of\\n          Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates of\\nApplied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates of\\nApplied Science Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Associates of\\nApplied Science#Associates of\\nApplied Science#Bachelors of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates of\\nArchitecture#Associates\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates ofArts (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates ofArts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates ofArts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates or Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates or Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates or Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates RN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates Science of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates Science Of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates Science of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates-AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates-Applied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates, Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates, Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates, Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates, National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates, Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates: Business Administration          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates?????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   associates' degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates' degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates' Degree#Associates Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates' degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates' Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates' Degree#Diploma#High School Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates' in Applied Sciences for computer#and Texas A&M. \\nHigh school Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates' of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates' of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates' of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates' of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates's Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates) A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates/Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates/Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates/Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates\\n          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates\\n\\n\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates\\nArts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates\\nof Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates\\nof Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates&nbsp;Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates#a degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates#A. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ASSOCIATES#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates#A.A. & S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates#A.A.S) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates#AA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates#AA#General Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates#AAS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates#ABA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates#Arts of Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates#Associate Degree (AAS)#Masters of Management#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates#Associate Degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates#Associate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates#Associates in Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates#Associates of Applied\\nScience#Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates#Associates Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates#Associates Science#A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates#Associates#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates#Associates#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates#AST) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                          Associates#Bachelor of Science and Juris Doctorate. Graduate#Bachelor of Science#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ASSOCIATES#BACHELOR OF SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates#bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates#Bachelor's Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates#Bachelors and Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates#bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Associates#Bachelors to Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates#Bachelors#B.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates#Bachelors#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates#bachelor�s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associates#Bachelor�s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associates#Business degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates#C.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates#CLC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Associates#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates#degree#NOVA#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Associates#Doctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Associates#EE Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates#I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Associates#Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates#M.O.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates#Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Associates#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates#matriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Associates#MD#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates#Networking. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Associates#of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associates#Pending 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associates#R.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associates#Regents Endorsed Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates#Registered nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Associates#Technical Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associates#US 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associatesof Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associate�s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associate�s Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Associate�s Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Associate�s of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Associate�s#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Association Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ASSOCIATION DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Association of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Association of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Association of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Association of Business Executive -Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Association of Business Executive (ABE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Association of Computer Professionals (UK)#Diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Association of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associative Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Associative Degree#BSc degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associcates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Associtate's of Science#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Associtates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Assocites 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Assoicate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Assoicate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Assoicate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Assoicate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Assoicate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ASSOICATED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Assoicates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ASSOICATES OF A SCIENCE DEGREE WITH A MAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Assosciate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ASSOSCIATES OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Assosiate  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Assosicate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Assurance Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AST Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    asters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ASTMH Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       astronomy, history of medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ASU#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   AT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AT&T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ATA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ATC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ATCI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ATCL Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ateneo de Cagayan#Graduate#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ateneo Impresa S.p.A#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ATI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ATM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Attained Associate Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Attained Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Attained Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Attained diploma#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Attained high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Attained High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Attained my Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Attaining B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Attendance of graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Attendance of Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Attendance without degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ATTENDED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Attendee 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Attendee#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Attending 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Au.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AUB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AUB#AUB#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AUC (BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Audio Recording and Production Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Audit of Investments in MIS) \\n\\nDoctoral degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Audited Master of Securities Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Auditor de Calidad Ligistica 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Audrey B. Romano 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AUG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AUG#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AUGUST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 AURA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             AUSTRIA#ASSOCIATE Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Auto Mechanic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AUTOCAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Autocad degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Automation (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Automobile Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Automotive 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Automotive Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Automotive Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Automotive Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Autonomous of Chihuahua          Accountant Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Average of A) BACHELOR DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Aviation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Aviation Maintenance Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Avionics Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AWARD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Award of Academic Achievement 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Award of Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Awarded Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Awarded D.D.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Awarded degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Awarded Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Awarded G.E.D diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Awarded Higher Diploma#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Awarded International Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Awarded International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AWARDS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AXSYM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           AZ\tBS E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               AZ        Degree#MD#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          az, bachelor of arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   49 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B\t\\n\t\tBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B - TECH (Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B . A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B . A . B IOLOGY#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B . S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B . S , M ARKETING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B .B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B .S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B .Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B (Minus) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B A Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B BA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B BA#Bachelor's Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B Compt#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B Education\\nathletics\\nachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B of A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  b s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B S of Business Administration#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B S- Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B S: Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B S\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B S#A.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B SB S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B Sc (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B Sc Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B Sc. and MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B Sc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B Sc. Degree#MIS#Assocate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B Sc. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B Sc#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B Tech#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B-COM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B-Com (Bachelor of Commerce) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B-Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B-TECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B-Tech (Bachelors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B-Tech National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B-Tech#Advanced Project Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B, NREMT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B, S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B,A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B,S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B,S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B,Se (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.      Academic qualifications#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.   A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.   S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.  S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.  Sc. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B. (Agric.) Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  729 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. A          I#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. A (Arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B. A Bachelor of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B. A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. A.\t\tBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. A.  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B. A. (ECONOMICS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B. A. Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B. A. ARCHITECTURE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B. A. Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B. A. degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B. A. ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. A#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                               B. A#B. A#B. A#B. A#B. A#B. A#B. A#B. A#M. L. K#B. A#B. A#B. A#B. A#B. A#B. A#B. A#B. A#B. A#B. A#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              B. A#B. A#B. A#B. A#B. A#B. A#M. L. K#B. A#B. A#B. A#B. A#B. A#B. A#B. A#B. A#B. A#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. A#B. A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. A#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B. A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. A#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B. A#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               B. A#Bachelor's Degree#Intermediate#Bachelor's Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B. A#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. A#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B. A#higher education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. A#inMarketing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. A#M. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. A#M.A#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. A#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. A#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B. A#Marketing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B. A#Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. A#Masters of Real Estate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. A#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. A#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. A#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B. A#MSA Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. A#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. A#VA#SAT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. ACADEMIC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. Agric 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. Agric.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. and Systems Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. ARCH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B. Arch. Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B. Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B. ARTS ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. B. A#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B. B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. B.A#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B. BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B. C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B. Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B. COM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. Com (Bachelor of Commerce) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      B. Com (Honors)#Bachelor's Degree\t\\n\\n\\n\\nY B.COM (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B. Com (Hons), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B. Com, Bachelor#Bookkeeping#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B. Com. Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B. Com. I (Bachelor of Commerce) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. Comm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. Commerce and Accounting.\\n      Bachelor degree / B.Comm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. E. \tMECHANICAL ENGG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. E. Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B. E. of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. E#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          B. E#M.B.A#Bachelor of Engineering   ProductionPunjab#Post-graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. Ed (Bachelor of Education#B. Com (Bachelor of Commerce) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. Ed (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B. Ed#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. Ed#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. EDUCATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B. EE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B. Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B. Eng (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. Eng (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. Eng (Hons)#Computer          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. Eng equivalence (HND 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. Eng. (B. Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B. Eng. (Honours) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B. Eng. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B. Eng#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. Engg 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B. Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. Engrg 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. F. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B. F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. Hughes 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. I CAO#II. Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B. I. T (Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. I#MBA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B. Jones)\\nPh.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B. K 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B. L 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B. M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. M. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B. Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B. Med 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. Met. Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B. Mus 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. MUS#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. of A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B. of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. of S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B. Paralegal Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B. Pascal, Milan 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. Pendery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. Pharm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. PHYSICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. Physiotherapy (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1261 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. S Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. S Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B. S.      MINISTRY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. S.  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B. S. ( Hons); 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. S. & M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B. S. Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B. S. and M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B. S. BACHELO DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B. S. CHEMISTRY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   41 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. S. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. S. degree#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. S. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. S. E. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. S. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. S. HRIM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. S. N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. S. Pharmaceutical sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. S. PHYSICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. S. Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B. S./A. A.\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. S.& M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. S#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. S#aB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B. S#Associate's of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. S#AUTOCAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. S#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. S#B.S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B. S#B.S#Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. S#B.S#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B. S#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B. S#Bachelor of Science Degree#A. A. S. / Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B. S#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. S#Baton 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. S#BTEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. S#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. S#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. S#Highschool diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B. S#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. S#M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. S#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B. S#Microcomputer Software Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. S#of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. S#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. S#Psy. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. S#RKNEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. S#Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B. sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  175 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B. SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B. Sc (Electronics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B. Sc (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. Sc (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. Sc (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. Sc (PCM)#Master Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B. Sc (Physics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. Sc (Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B. Sc Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. Sc Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. Sc Engg 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. Sc IN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. Sc Pharm#A.Sc (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B. Sc,  Chemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. Sc, degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B. Sc.          B.Sc. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. Sc. (Hon 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B. Sc. (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. Sc. (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. Sc. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. Sc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. SC. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B. Sc. degree#Chartered Accountant 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. Sc. EE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B. Sc. geology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. Sc. Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. Sc. IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B. Sc./Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B. Sc#B. Sc. MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. Sc#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B. Sc#CERTIFICATE\\n\\n*CERTIFICATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. Sc#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. Sc#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B. Sc#M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B. Sc#Masters Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B. Sc#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B. Sc#Post Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B. Sci 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. Soc. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   99 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. TECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B. Tech (Bachelor s of Technology) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B. Tech (CS & E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B. Tech (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. Tech (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B. Tech (Hons) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B. Tech (Hons), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B. Tech & M. Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B. Tech. - Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B. Tech(Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. Tech#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B. Tech#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B. Tech#Bachelor's of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         B. Tech#Bachelor's of Technology#M.E (Master of Engineering) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B. Tech#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  B. Tech#Degree#Bachelor's degree)\\n\\n\\n\\n\\n\\nNational Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              B. Tech#Degree#Bachelor's degree)\\n\\nNational Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B. Tech#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B. Tech#M. Tech (Robotics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B. Th#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B., B.S#XII 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B..S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.\\nS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  b.a 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  b.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.a 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                28953 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A          J.D.#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A   (BACHELOR OF ART) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A  . 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A  COMMUNICATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A - POLITICAL SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A '10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A (ANTHROPOLOGY) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A (Arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A (Bachelor of Arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A (Economics) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A (ENGLISH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A (Fine Art) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A (Hon) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A (Honours) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A (HONS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A (Hons)#CIM Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A (JOURNALISM & ENGLISH LITERATURE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A (MARKETING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A (Sociology) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A & M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A & Teaching Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A and B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A and M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A and MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A and Teaching Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A ands Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A Bilingual Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A BIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A BUSINESS MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   59 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A Degree School of Agricultural and Natural Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A Degree#Associate degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A Degree#M.D#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A expected 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A FINANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A Geography 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A Government 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A Grad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A Honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A Honors#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A Honours, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A HONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A HR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A in degree#A.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A Interdisciplinary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A International studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A Japanese 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A LIBERAL ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A major 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A Mathematics and B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A of History and B.A of Political Science#B.A of Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A of Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A OF POLITICAL SCIENCE MAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A Of#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A Physics (Honors)\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A Professional Writing and B.A#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A PSYCHOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A School of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A seeking#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A SPANISH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A translator 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A, B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A, Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A, Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A, BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A, ENGLISH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A, LL.B (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A,. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A.\t\t\t\t\t\t\t\tM.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A.\tPSYCHOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A. \tBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A.  \t\t\t\t\t  \t\\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A.  \t\t\t\t\\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A.          B.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A.        Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A.       Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A.    Bachelor of Education - UNIFOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A.    degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A.   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A.   U.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A.  ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A.  and M.A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A.  Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A.  Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A.  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A.  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A.  Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A.  of Science of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A. - Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A. (cl) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A. (Fr. Lit. & Pol. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A. (HISTORY) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A. (Honors Graduate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. (HONORS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A. (Honours), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A. (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A. (HONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A. (HONS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A. (Hons) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. (Hons) Economics. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A. (TEFL) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A. / B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A. / LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A. \\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A. \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A. & M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A. & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A. & Spanish, B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A. Administration of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A. Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A. and B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A. and M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A. and M.A. of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A. and M.A#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A. and M.A#L.L.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A. and M.I.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. and MEng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A. and partial B. Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A. Arts (Theater) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A. AUDIO PRODUCTION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A. B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A. B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A. Bachelor Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A. Bachelor of Art study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A. Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A. Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A. Bachelor of Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A. Bachelor of Business in Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A. Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A. Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A. Biology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A. BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A. Business & B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A. Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A. COMMUNICATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. Communication (Graduate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A. COMMUNICATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  143 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  607 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A. Degree\t\t\t\t\t\tA.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A. degree Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A. Degree#A.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A. Degree#A.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A. degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A. Degree#A.A.S. Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A. Degree#Accounting Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A. Degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A. Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A. Degree#B.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A. degree#B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A. Degree#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A. Degree#B.A. M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A. degree#B.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A. degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A. Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A. Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. Degree#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A. Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A. degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A. Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A. degree#M.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A. Degree#M.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A. degree#M.A. Degree#M.A.degree#Ph.D. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A. Degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A. Degree#M.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A. Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A. degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A. Degree#MCSE and A.S. Degree#ECPI,  A.S. Degree#Honor Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A. degree#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. Degree#Receipt of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A. Degree#S.A#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A. Dual-Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A. ECONOMIC DEVELOPMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A. ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A. Education and B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A. ENGLISH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A. equiv 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A. EQUIVALENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A. French & B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A. Graduate#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A. High Honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A. HISTORY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A. History B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. Honors ( 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A. honors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A. Honors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A. Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A. Honors Degree#Diploma#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A. honors, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A. Honors, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A. Honours - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A. Honours ( 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. Honours, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A. in (arts) Translation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A. IN LINGUISTICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A. Integrative Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. INTERDISCIPLINARY DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A. INTERNATIONAL AFFAIRS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A. LIBERAL ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A. Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A. LL.B. (Bachelors of Arts & Bachelors of Law) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. LL.B#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A. MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A. of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A. OF ART 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A. of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A. of Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A. of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A. of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A. of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A. of Faculty of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A. of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A. of Government and B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A. of History degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A. of Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A. of Nurse ( R.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A. of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A. of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A. Philosophy & B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A. political science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A. POLITICAL SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. POLITICAL SCIENCE#MINORS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. POLITICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A. POLITICS; B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A. PSYCHOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A. PSYCHOLOGY (MAJOR) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A. Psychology & Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A. Psychology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A. Russian/B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A. School of  Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A. Sciences du Langage (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A. Social Sciences          (Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A. SOCIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A. special degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A. STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A. Theater Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A. U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A.-Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A., A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A., Administration of Justice and B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A., B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A., B.A.I 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A., B.SC Degree#Advanced Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A., Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A., M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A., of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A.????????#A.A.?????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A.?Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A.'s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A.(Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A./B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A./HONOURS GRADUATE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A./M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A./M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A.\\n\\n\\nHistory B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A.\\n\\n\\nM.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A.\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A.\\nBachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A.\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A.\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A.\\nManagement Degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A.\\nMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A.\\nUMUC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A.&nbsp#A.A.&nbsp 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A.&Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A.#B.A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A.#intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A.B.S. Degree#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A.D#Doctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A.Honors ( 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A.J 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A.L.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A.LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A.M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A.M.S (Bachelor of Ayurvedic Medicine and Surgery) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A.M.S. Bachelors#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A.R.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A.R.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A.s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   58 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A.S.D.E.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A.S#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A.SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A) Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A/B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A\\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A#A  LEVEL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#A. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A#A.\\nS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   51 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A#A.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A#A.A. Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#A.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#A.A#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A#A.A#A.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A#A.A#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A#A.A#HI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#A.A#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#A.A#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#A.D.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A#A.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#A.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A#A+ Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A#AA&S#AAS#Ph.D#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#AA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#AEMM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#AFC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A#Africa Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A#AICPCU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A#and Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#Applied Sciences (SEAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#Associate Degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A#Associate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A#Associate of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#Associate s Degree#Associate s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A#Associate's Degree#Abitur#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A#Associate#11th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#Associate#B.A#Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A#Associate#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A#Associated Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#Associates Degree\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#Associates degree#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#B. A#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              b.a#b.a 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  462 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A#B.A degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A#B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A#B.A. Linguistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#B.A.&nbsp 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#B.A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A#B.A#B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A#B.A#B.A#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#B.A#B.A#B.A#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#B.A#B.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A#B.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#B.A#Diploma#Grade 13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A#B.A#high school. Invited 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A#B.A#intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#B.A#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#B.R 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   83 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A#B.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#B.S.L.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#B.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#B.S#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#B.S#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A#B.S#NM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A#BA#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A#Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A#Baccalaureate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   44 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#Bachelor of Arts honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A#Bachelor of Arts) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#Bachelor of Arts#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A#Bachelor of Commercial Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#Bachelor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#Bachelor's Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A#Bachelor`s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A#Bachelors of Human Resource Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#Bachelors of Human Resource/Technical Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#BCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#Board of Governors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#BOCCONI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#BSc#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#C.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A#Cameroon 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A#Commonwealth of Virginia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#COMPLETED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#COMPUTER DESIGNER (Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A#concentrating 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#Cont 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A#CRIMINAL JUSTICE#ASSOCIATE DEGREE#A.S#CRIMINAL JUSTICE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#D.O.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A#Degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   67 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#Diploma of French Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A#Diploma#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#District of Columbia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A#Education of Students (IES) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#English 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A#EXPERIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#FL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A#French Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A#French, B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A#General Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#GIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#Grad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A#Graduate#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A#Graduate#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A#Graduate#U.S. degree of Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#H.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#High Distinction Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A#High Honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#High school degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A#High School Diploma#AP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A#High School--Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A#Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A#International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A#J.D., LL.M. (Master of Laws) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#J.D#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A#Joint Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A#Juris Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#LAUDE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A#LL.B (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#LSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A#M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   84 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#M.A., M. Phil. & Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A#M.A., Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A#M.A.,M.Pol.Sc., Sociology B.A#M.A.,M.Pol.Sc#B.A#M.A.,M.Pol.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.A#M.A.; Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#M.A.P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#M.A.T: ESOL degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#M.A#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#M.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A#M.A#M.A#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#M.A#M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#M.A#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A#M.A#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#M.A#S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A#M.A#Scientific Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#M.B.A. and B.A#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A#M.B.A#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#M.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#M.P.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A#M.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#M.S#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#M.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A#M.S#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#M.Sc#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#M.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#MA#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#Master of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A#Master of Forensics Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A#Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.A#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#Master's Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A#Master's#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#Master\\nof Applied Politics degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#Masters Diploma#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#Masters of Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#Masters of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#Masters#H. S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A#Masters#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A#Mathematics.\\n\\n*A.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#MBA#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#MBA#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#MD\\nInternational Baccalaureate Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#MINOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A#MS#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#OH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#Ohio 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A#Pending Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A#PhD#No Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A#Post graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A#postdoctoral 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#PPEL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#PPIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.A#PROFESSIONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#PRSSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#R.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.A#R.O.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.A#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.A#Secret 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#SPHR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.A#Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#Teachers Degree IL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#Technicians Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#THOMAS M. COOLEY#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A#U.S. degree of Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.A#UDC#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.A#UDC#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.A#UMUC#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.A#UNIVERSIDAD DE SALAMANCA (Spain) B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A#UniversityB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.A#UniversityB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#UVA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.A#V.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.A#VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.A#Valedictorian of high school graduating class of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.A#year. A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Agric 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Arch & BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Arch) Bachelor of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Arch#TA & RA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.B A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.B. A, HRM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.B. A#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1746 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.B.A (Bachelor of Business Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.B.A (Bachelors of Business Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.B.A (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.B.A (International Business) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.B.A Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.B.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.B.A Degree#BEPP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.B.A Graduated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.B.A Homeland Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.B.A in M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.B.A of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.B.A, HRM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.B.A. /M.B.A#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.B.A. Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.B.A. Bachelor's of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.B.A. C.B.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.B.A. Degree#A.A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.B.A. Degree#AABA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.B.A. Degree#M.B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.B.A., (UDC) Washington D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.B.A., Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.B.A./M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.B.A.LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.B.A) Bachelor of Business Administration#D.B.A) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.B.A#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.B.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.B.A#A.A. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.B.A#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.B.A#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.B.A#AACSB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.B.A#Associate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.B.A#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.B.A#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.B.A#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.B.A#Bachelor of Business Administration#Bangladesh, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 B.B.A#Bachelor of Business Administration#Masters of Business Administration Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.B.A#Bachelor of Business and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.B.A#BACHELOR OF BUSINESS AND ADMINISTRATION\tYEARS ATTENDED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.B.A#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.B.A#Bachelor's of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.B.A#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.B.A#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.B.A#Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.B.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.B.A#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.B.A#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.B.A#I.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.B.A#M.A.C.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.B.A#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.B.A#M.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.B.A#Master of Arts (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.B.A#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.B.A#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.B.A#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.B.A#P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.B.A#Yr. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.B.ABusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.B.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.B.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.B.M (Bachelor of Business Management) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.B.M#Bachelor of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.B.M#Bachelors of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.B.S. Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.B.S#AA#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.B#C.O.B.LS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.BA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Bm.E#Bachelor of Biomedical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Bus.Sc. (Bachelor of Business Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.C. of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.C.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.C.A , (Regular) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.C.A#Bachelor of Computer Applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.C.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.C.B.A#L.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.C.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.C.E#Bachelor of Computer Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.C.S   (Bachelor#DAE ( Diploma#Associate Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.C.S.E#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.C#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.Ch.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   46 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.COM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.COM\tB.COM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Com\tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.Com          Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Com (Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.com (Bachelor of Commerce) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Com (Bachelors of Commerce) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Com (Banking and Finance) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.Com (Cooperation) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Com Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Com Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Com Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.com Taxation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.COM, A.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Com, Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Com. Computers#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Com., Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Com#12th#B.S.E#10th#B.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Com#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.COM#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Com#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Com#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Com#Higher Secondary#Higher Secondary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.com#M.L.Dhanukar Collage of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.com#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Com#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.comm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.Comm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.COMM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.Comm, Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.COMMERCE (HONORS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.D. and M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.D.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.D.S\tM.D.S\tSLE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.D.S (BACHELOR OF DENTAL SURGERY) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.D.S, Bachelor of Dental Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.D.S. Doctor of Dentistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.D.S#Bachelor of Dental\\nSurgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  784 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.E  (Telecom) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.E - Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.e ; 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.E ( CSE ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.E (Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.E (Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.E (Bachelor of Engineering) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.E (Bachelors of Engineering) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.E (Bachelors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.E (Bachelor�s of Engineering) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.E (Electronics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.E (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.E (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.E (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.E (Mechanical) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.E Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.E graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.E IN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.E. (Honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.E. (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.E. (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.E. (Hons.) ( CGPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.E. (ISE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.E. (Mech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.E. & B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.E. CSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.E. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.E. Degree#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.E. ELECTRONICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.E. Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                               B.E., M.E#Master of Engineering (M.Eng#Bachelor of Engineering#Bachelor of Engineering (B.E#B.E., M.E., M.B.A., (Ph.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.E.(Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.E.(Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.E.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.E.C.E#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.E.D - ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.E.D ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.E.E. Degree#B.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.E.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.E.E.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.E.E/M.E.E. Equiv 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.E.E#J.D#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.E.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.E.S, A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.E.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.E.S#POLITECNICODIMILANO#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.E.T.E. degree#Bachelor of Engineering Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.E(Electronics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.E(mechanical ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.E#12th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.E#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.E#B.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.E#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.E#B.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.E#B.S#M.S#B.Sc#M.S#DIP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.E#Bachelor of Electronic Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.E#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.E#Bachelor Of Engineering ) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.E#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.E#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.E#Bachelors of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.E#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.E#Distinguished Graduate (AFROTC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.E#First Class Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.E#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.E#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.E#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.E#master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.E#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.E#STRENGTH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.E#TCPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.Ec 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   40 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Ed (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Ed (Psy) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Ed. (honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Ed. (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Ed.Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.ed#Business studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.ED#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  116 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.ENG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Eng (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Eng Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.Eng. (Electronics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Eng. (Hon) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Eng. (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Eng. (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.ENG. (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Eng. EE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Eng. Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Eng.(Honours) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Eng#B.Eco 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Eng#M.Sc. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Eng#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Eng#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Engg(Mech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Engg#PICT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.Engr 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.ES/B. Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.F 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.F. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  305 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.F.A degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                B.F.A degree#A.A.S#Associates in Applied Science) degree#A.A.S (Associates in Applied Science) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.F.A inVisual Arts#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.F.A Professional Photographic Illustration & A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.F.A Professional Photographic Illustration and A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.F.A, Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.F.A: Painting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.F.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.F.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.F.A. THEATRE ARTS (ACTING) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.F.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.F.A#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.F.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.F.A#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.F.A#Bachelors of Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.F.A#Bachelors of Fine Art) degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.F.A#Bachelors#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.F.A#Business   Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.F.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.F.A#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.FA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.G.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.G.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.G.S#Bachelors of General Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.G.S#Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.G.S#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.I.D.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.I.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.I.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.I.S. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.I.S#Bachelor of Independent Study) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.I.S#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.I.S#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.ILD Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Ind.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Iuris 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.J 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.J. Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.J#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.L 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.L (Bachelor of Law) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.L (Bachelors of Law) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.L.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.L.A#Bachelor's Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.L.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.L#Bachelor of Laws (LLB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   68 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.M. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.M. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.M. Flute Performance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.M. Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.M.-M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.M.d.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.M.E. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.M.ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.M#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.M#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.M#B.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.M#Bachelor of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.M#Bachelor of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.M#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.MeSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.Mus 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.MUS. ETHNOMUSICOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.MusEd 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.O.A.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.O.E High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.O.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.O.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.P.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.P.S#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Pharm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Pharm (Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Pharm. (Bachelor of Pharmacy) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Pharm#M.Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Pharm#Post Graduate Diploma#Bachelor of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Phil (Hon) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.Phil (Philosophy ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        B.R.D#Bachelor of Medicine and Bachelor of Surgery (M.B.B.S#M.B.B.S. - 046664 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  b.s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  b.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                44264 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S\t\t\t\t      Masters of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S          \\n          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S          Present 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S  Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S ;ANTICIPATED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S ?Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S (Bachelor's degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S (Electronics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S (Engineering) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S (MAJOR BIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S (MARKETING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S (Neuroscience) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S & B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S & M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S and B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S and dual M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S and M.S#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S and MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S BIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S BIOLOGY ; GRADUATING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S Candidate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S CRIMINAL JUSTICE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S Cyber Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  103 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S Degree#A.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S Degree#A.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S degree#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S Degree#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S Degree#Master  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S Degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S degree#PhD#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S degree#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S double 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S EET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S ELEMENTARY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S F.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S FINANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S HES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S Honors Applied Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S in Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S INTEGRATED SCIENCE AND TECHNOLOGY (ISAT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S ISC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S N COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S of Agronomy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S of Kinesiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S P  SYCHOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S Pending 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S PSYCHOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S RN nursing) Largo MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S SCIENCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S SOCIAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S TECHNICAL SALES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S � Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S- Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S- Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S, Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S, B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S, BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S, Bachelor of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S, Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S, Biotechnology, degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S, COMPUTER SCIENCE & ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S, ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S, Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S, M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S; Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S: Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S: HOSPITALITY MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S: MAY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.\t\tCERAMIC ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S.          Pharm.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S.      Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.    BIOLOGICAL SCIENCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S.   Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S.   COMMUNICATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S.   COMMUNICATIONS   MEDIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S.   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.  ; MAY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S.  Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S.  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S.  DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S.  degree#Mathematic  &  B.A.  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S.  MARKETING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S. - (Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S. - Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S. ; MAY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. '91 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S. (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S. (Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. (E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S. (Hon) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S. (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S. (HONORS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S. (Honors)#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S. / B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S. / SOCIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. /B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. /M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. \\n*M.S. \\n*Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S. \\n\\n\\nM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S. & A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S. & B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S. & M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S. & M.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S. & M.S#Diploma#of Applied Math 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S. & MBA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S. A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S. Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S. Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S. and B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S. and B.A#B.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S. and B.S.B.A (Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S. and M.B.A degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S. and M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S. and M.S#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S. and M.S#BS/MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S. and M.S#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S. and M.S#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S. And M.S#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S. and Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S. and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S. and Music B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. and Psychology B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S. and S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S. APPLIED PHYSICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S. APPLIED SCIENCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. ARCH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S. ARCHITECTURE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. Astrophysics and B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S. B.A. ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S. BA/IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S. Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S. Bachelor of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S. Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S. Bachelors of Science#B.S. Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S. BIOCHEMISTRY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S. BIOENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. Bioengineering conc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S. BIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S. Biology degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. BIOLOGY#EXPECTED MAY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. BIOMEDICAL SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. Bus. Admin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S. Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S. Business Administration and B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S. Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S. Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S. C.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S. CANDIDATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S. CANDIDATE#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.s. CHEMICAL ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S. CHEMISTRY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S. Chemistry & B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. CLS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. College of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S. Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S. COMMERCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S. Communications Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S. Communications Degree#B.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S. COMMUNITY HEALTH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S. COMPUTER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S. COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S. CRIMINAL JUSTICE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  265 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1168 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. Degree - Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. Degree M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. Degree of High Polymer Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. Degree\\nA.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. degree#A.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. Degree#A.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S. Degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. Degree#A.A.S, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. Degree#A.A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. degree#A.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. Degree#A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S. Degree#A.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S. Degree#AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S. Degree#Anticapate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S. Degree#Associate Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S. degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S. Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S. Degree#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. Degree#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. degree#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. Degree#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. Degree#Bachelor of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S. Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. Degree#Bachelor of Science#B.S. Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S. Degree#Bachelors of Science#A.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. Degree#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S. Degree#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S. DEGREE#BSEE#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. Degree#CBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S. Degree#CIVIL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S. degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S. Degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S. degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S. Degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S. degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S. Degree#Graduate#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. degree#Graduate#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. degree#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. DEGREE#H.S. DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S. Degree#High school Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S. Degree#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. Degree#M.B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. Degree#M.B.A#M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. Degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. Degree#M.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S. degree#M.S. degree#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S. Degree#M.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. degree#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. Degree#Master of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S. degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S. Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S. degree#Masters of Divinity degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. degree#Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S. degree#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S. Degree#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S. Degree#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S. Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. DMIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S. Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. E. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S. E.E grad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S. E.E.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S. ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S. ECONOMICS#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. ED. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S. Education & Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S. EDUCATION#M.A. GEOGRAPHY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S. EE & ME#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S. Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. Engineering Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S. Expected Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S. FINANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S. from UMUC#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. GIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. HIN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S. HISTORY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S. Honor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S. HR Mgmt. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. HRIM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. IBE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. IFSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                           B.s. industrial Design...................................................................................................................( 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. INDUSTRIAL RELATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. INFORMATION SYSTEMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. Int 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S. INTERNATIONAL RELATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. INTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S. IT Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S. M.E.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S. M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S. Management A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S. Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. Master's of Public 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S. MATHEMATICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S. MECHANICAL ENGINEERING#B.S. M.E#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S. N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. Nursing (Accelerated Second Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S. O. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S. of Biotechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S. of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. OF COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S. of Cybersecurity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S. of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S. of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S. of Forensics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S. of Geographical Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S. of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S. of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S. of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S. PHYSICS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S. Program#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. PSYCHOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S. Psychology degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S. Psychology degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S. School of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S. Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S. SOCIOLOGY\\nMINOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.s. Software Development and security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. STATISTICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S. STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S. TBD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S. Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S. WITH HONOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S. Zoology and B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S.-B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S.-M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S.-Paralegal Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S., & A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S., & A.A#A. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S., B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S., BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S., Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S., of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S.'s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S.(ASCP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S.(Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S.(Hons)#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S.) Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S.) and English (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S.) and Mathematics (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S./ B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S./Accelerated MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S./B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S./B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S./B.A#Bachelor of Science#Master of Accounting, AU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S./M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S./M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S./M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S./M.S. NUTRITION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S./M.S. NUTRITION#B.A. COMMUNICATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S./MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S./MSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S.\\n Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S.\\n\\nCOLLEGE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S.\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S.\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S.\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S.\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S.\\ndegree#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S.\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S.\\nM.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S.\\nM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S.\\nPost Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S.\\nSpecializing degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S.&nbsp 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S.#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.A.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.A.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.and A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  270 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S.B.A (Bachelor Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S.B.A &ndash#B.S. &ndash 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S.B.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S.B.A. Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S.B.A#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S.B.A#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S.B.A#B.Ec 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.B.A#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S.B.A#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S.B.A#Bachelors\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.B.A#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S.B.Ad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.B.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S.BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.BIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S.C Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S.C. of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S.C.E expected 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S.C.E#Bachelor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S.C.S and M.S.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S.C.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S.C.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S.C.S#A.E.E.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S.C.S#Bachelor of \\n          Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.C.S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.C.S#M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S.C#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.C#B.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S.C#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S.Ch.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S.Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S.Degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  138 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S.E & M.S#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S.E Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.E. (M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S.E. \\n*Minor (i.e. certificate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S.E. CIVIL & ENVIRONMENTAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S.E. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S.E. Department of Automation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.E.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S.E.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  174 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S.E.E (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S.E.E. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S.E.E. (B.ENG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S.E.E. Bachelor Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S.E.E. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S.E.E.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S.E.E#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S.E.E#A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S.E.E#B.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.E.E#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S.E.E#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S.E.E#Bachelor Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S.E.E#EXPERIENCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.E.E#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S.E.E#M.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S.E.E#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.E.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S.E.T. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S.E#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S.E#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S.E#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S.ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S.Ed#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S.F.C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.F.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S.F.S#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.G.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.G.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.GEOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.I.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S.I.E (Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S.J 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S.L 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.L.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S.M.E. Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S.M.E. Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S.M.E#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.M.E#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.M.E#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S.M.E#M.S.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S.M.E#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S.M/ concentrated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S.M#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   73 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S.N Bachelors of Science#WV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S.N#Bachelor of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S.N#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S.N#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S.N#R.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.O.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S.O.E#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.O.E#O.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S.PHARM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S.S (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S.S (Pass) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S.Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S.T.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S.W. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S.W#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S.W#Bachelors of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S(Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S) BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S) Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S) COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S/ B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S/ DUT) BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S/A.B. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S/B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S/B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S/M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S/MPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S/MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S\\nAssociate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#A. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   64 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#A.A degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#A.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#A.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   43 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#A.A.S. Degrees#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#A.A.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#A.A.S#A.A.S#H.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#A.A.S#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#A.A.S#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#A.A.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#A.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#A.A#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#A.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#A.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#A.B.E.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#A.O.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   90 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#A.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#A.S#A.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#A.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#A.S#A.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#A.S#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#A.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#A.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#A.S#IT HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#A+ Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#AA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Accountancy and Control Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#Advanced Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#advanced diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#Advanced Levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#Advanced Technical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#AL. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#AM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Anticipate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#Applied GIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#Applied Science Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#Applied Science degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#ASI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#Associate of Applied Science\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#Associate of Arts#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#Associate s Degree#Associate s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S#Associates of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#Associates Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#Associates#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  230 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#B.A.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#B.A#B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#B.A#B.A#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#B.A#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#B.A#Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#B.B.A#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  427 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#B.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#B.S. degree#Ministry of Science#Master's degree#Ministry of Science#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#B.S.Ae.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#B.S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#B.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#B.S#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#B.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#B.S#B.S#Schwartz, B#B.S#B.S#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#B.S#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#B.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#B.S#M.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#B.S#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#B.S#Msc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#B\\nHIGH SCHOOL DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#BACCALAUREATE#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#Bachelor of \\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#Bachelor of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#Bachelor of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#Bachelor of Applied Science Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#Bachelor of Arts Degree#Master of Arts degree#Doctor of\\nPhilosophy degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#Bachelor of Biology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Bachelor of International Trading 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#Bachelor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   73 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#Bachelor Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#Bachelor of Science\t\tdegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#Bachelor of Science and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Bachelor of Science Degree \\nA.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#Bachelor of Science#AAS#Master Degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#Bachelor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#Bachelor?s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S#Bachelor's and Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#Bachelor's Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Bachelor's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#Bachelor's of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#Bachelors in Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#Bachelors of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#BR>A.S#BR>A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#BS-ICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#BS#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#BSEE#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#BSEE#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#BSME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#Btech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#Business Studies          A.A.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#CERTIFICATES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#CMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#CMIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#COBOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S#Completing A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#Completing Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#Configuration of Master Data 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Cours de\\nCivilisation Fran�aise 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#COURSEWORK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#CPC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#CUNY#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#D.D.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#D.O 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#DC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S#degree. \\nA.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#Degree#Bachelor of Architecture (B.Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#degree#H.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   80 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#Diploma          High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#Diploma#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#Diploma#B.S#Diploma#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#Diploma#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#Diploma#Distinction Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#Diploma#Graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#Diplomas 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#Dipolma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#Director of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#DSS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#E.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#EC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#Elements of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#ESS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#FALL SEMESTER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#Feb 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#Finished degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#FRANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#French 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#G.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#General Banking Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#GIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#Grade 13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#Graduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#Graduate IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#Graduate#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#Graduate#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#Graduate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#Graduate#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#Graduate#Master#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#h A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#H.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#H.S., Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#High   School   Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#High School\t\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#High School Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   39 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#HIGH SCHOOL Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#High School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#high school.  (High   School) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#high school. (High School) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#High School/Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#High Shool 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#HIGH\\nSCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#Honors Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#IBM#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#IDSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#Intermediate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#International Baccalaureate Diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#ISAT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#ISOM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#IT Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#J.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#Jesuit)          A.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#KOREA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#L.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#L'Universite de Lyon 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#LAUDE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#Laurel High Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#LICENSURES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#lieu of Degree#A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#Lieu of Degree#A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#Literature Diploma#History Diploma#Leadership Diploma#Scientific Investigation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#M. Dubin, D.M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#M. S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#M. S#M.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#M.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S#M.A#M.B.A#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#M.A#PMI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#M.B.A (received High Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#M.B.A. coursework#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#M.B.A. graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#M.B.A#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#M.B.A#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#M.B.A#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S#M.B.A#YEAR MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#M.C.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#M.D. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#M.D.\\n\\n\\n Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#M.D.\\n\\nMasters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#M.D#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#M.D#J.D#M.F.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#M.Ed#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#M.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#M.P.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#M.P.H#MPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#M.P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  170 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#M.S (Part time) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#M.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#M.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#M.S. /MBA (dual degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#M.S.#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#M.S.#Masters#B.S#M.D.#B.S#B.S#M.S.#Masters#B.S#M.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#M.S.#Ph.D#B.S#Ph.D - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#M.S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#M.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#M.S#associate#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#M.S#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#M.S#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#M.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#M.S#M.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#M.S#M.S#M.S#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#M.S#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#M.S#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#M.S#Ph.D. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#M.S#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#Master Automotive Mechanic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#Master of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#Master of Art#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#Master of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#Master of Divinity#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#Master of Light Scattering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#Master of Philosophy#Bachelors of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#Master of Science#Doctor of Science\\n(D.Sc.) degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#Master's of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Master's#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#Masters Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#Masters of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Masters of Business Adminstration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#Masters of Business\\nAdministration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#Masters of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#Masters of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#Masters of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#MASTERS OF SCIENCE PUBLIC ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#Masters#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#Masters#Management Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#Masters#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   43 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S#MBA degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#MBA#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#MBA#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#MBA#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#MBA#Masters#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#MCDBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#MD degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#med-school and B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#Membership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#ML 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#MO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#MS/PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#MS#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#N.A.S.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#N.S.B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#NCMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#Networking Technologies Diploma#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#Networking) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#NOMAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#NVCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#O. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.S#OCC#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#Orientation. A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#OSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#Ph.D. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S#PhiladelphiaPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#PHR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#Physical Science BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#Post Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.S#Post-Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#Post-Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#ProductionA.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#PSE Literature Diploma#History Diploma#Leadership Diploma#Scientific Investigation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#pursuit of Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#R.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#R.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#R.O.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S#Regents Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Resident Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S#Scholar Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#Second Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#SECONDARY CONCENTRATION\\n(ECONOMICS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.S#Senior 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#Shore          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#Southeastern university Master of Business and Public 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.S#Specializing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#Suwon, S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.S#TECHNICAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#Technical Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.S#Towards Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.S#TV#A.A.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.S#UMUC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.S#UMUC#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.S#Undergraduate and Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.S#Undergraduate#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.S#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.S#Veterinary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.S#Virginia. \\nA.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.S#W.D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.S#W.S#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2086 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   81 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.Sc\t\tSociology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Sc   Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.Sc  (Agricultural 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc - Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Sc - Biology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.Sc - Microbiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Sc ( Physics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.Sc (Agriculture)#Date of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc (Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc (Bachelor of Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Sc (Bachelor of Science)#10+2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.Sc (Bachelor's)\tM.G 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc (Bachelors of Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Sc (Chemistry) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Sc (CHEMISTRY) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc (CS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc (Ed) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc (ED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Sc (Electronics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc (Engg) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.SC (HONS)#LEONE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Sc (M.P.C)#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc (Mgt) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.Sc (Microbiology) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc (Secondary Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc & B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Sc Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.Sc Agroforestry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Sc and M.Sc#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.Sc Biochemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Sc Biology#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc Botany 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc Chemistry#B. Applied Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.Sc Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.SC degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.SC Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc degree#award of Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Sc Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Sc Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc Geology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Sc In 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.Sc in Administration and Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc Mathematical Physics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Sc Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.Sc Microbiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc Networking Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Sc of Alson 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Sc of Mechanical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Sc of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Sc Statistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Sc, Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Sc, Bachelor of Science (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc, Computer Science M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc, M.C.S#M.C.S#M.C.S#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc, M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Sc, Physics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Sc.\t\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.sc.  Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc. - (Geology), Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc. - Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc. - Operations Research 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.Sc. (Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc. (Bachelor of Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Sc. (Botany) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc. (Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.Sc. (Engineering) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc. (Engr 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc. (hnr) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc. (Hon 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc. (Hon) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Sc. (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Sc. (Honours) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Sc. (Honours), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc. (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc. (HONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc. (hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc. (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc. (HONS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Sc. (MPC)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.Sc. (Nutrition) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc. (PCM & Electronics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc. (PCM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc. (REM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Sc. (Ron's) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc. (sp#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Sc. (Statistics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Sc. \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.Sc. \\nSKR#12th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc. & M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc. & Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.Sc. & post-graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Sc. ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Sc. Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc. Administration (Banking and Finance) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Sc. Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Sc. Ag 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.Sc. Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Sc. and B.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Sc. and M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc. and M.Sc#M.Sc.  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc. Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Sc. Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc. CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Sc. Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.sc. computer science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   49 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.SC. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.Sc. degree, Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc. Degree#B.Sc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Sc. degree#B.Sc#M.Sc. degree#M.Sc#Ph.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.Sc. Degree#Diploma of Higher Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc. Economical Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Sc. ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.Sc. Edinboro University Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Sc. Elec. Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc. ELECTRICAL ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc. Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.Sc. Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Sc. Engineering Science#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc. EST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc. Faculty of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Sc. GENERAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Sc. Geography. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc. Gerontology (Graduate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc. Hon 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc. Honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.Sc. Honors (Econ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Sc. Honors: 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Sc. Honours 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.Sc. Honours degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc. Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Sc. Hons. Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.Sc. In Biomedical Sciences and B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc. in E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.Sc. in E.E#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.Sc. in E.E#Poland 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Sc. IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc. Lewis 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc. Management (Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Sc. Math (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.Sc. MATHEMATICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Sc. Mathematics A & B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Sc. Microbiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc. Middle 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.Sc. Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.Sc. of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Sc. of communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.Sc. of Computer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Sc. of Computer Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc. of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Sc. of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.Sc. of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Sc. of Engineering (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.Sc. of International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.Sc. of Science#10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc. Pharm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Sc. Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.SC. Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Sc. Religion 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Sc. University of Maryland#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.Sc. Voc. CHEMISTRY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Sc. Zoology (Hon 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.Sc.- Microbiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Sc.-Statics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc.,\tE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Sc., and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.Sc., Bachelor of Biological Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc., Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc., Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc., M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc., M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Sc., SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc.,Bachelor of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc.: Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc.(Bachelor of Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Sc.(Honours), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc.(Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.Sc.(Physics)\tS.A#Pre-Degree\tS.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc.) Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc.) Degree#Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Sc.)\\nMaster of\\nScience(M.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc./M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Sc.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.Sc.Chemistry (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc.Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Sc.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc.Econs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Sc.EE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc.Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Sc.of Architecture Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc(Bachelor of Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.Sc(Electronics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.SC(HONS.) SOCIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.sc(hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Sc(Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Sc(Physics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Sc(PSY) Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Sc/Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc/M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc#10+2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc#10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc#A Technological Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Sc#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc#A.A. Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Sc#A.A.S#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.Sc#A.A.U.\\n*Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc#A.A#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Sc#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.Sc#advanced level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Sc#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.Sc#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.Sc#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.Sc#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Sc#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.SC#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Sc#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Sc#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.SC#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Sc#B.Sc#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Sc#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc#BA#A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    B.Sc#Bachelor of Science Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.SC#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Sc#BTEC Higher National Diploma#BTEC Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.Sc#Canada\\n ? D.E.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Sc#Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc#Computer Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.SC#Degree Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Sc#Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Sc#Faculty of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Sc#GCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Sc#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Sc#Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.Sc#honour's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Sc#International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc#IRAQ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Sc#Lahore.\\n*BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc#M. C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Sc#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Sc#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B.Sc#M.Sc#M.Sc#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.Sc#Master of Software Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Sc#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Sc#MS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.SC#My high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.SC#ND) National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Sc#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.SC#PhD#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.Sc#UC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Sc#Union of Myanmar (Burma). \\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.Sci 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.Scs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Se./B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.SE.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Soc.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.SoSc Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B.T.P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.T.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  344 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B.TECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Tech (Applied electronics & Instrumentation) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Tech (B.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Tech (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Tech (B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B.Tech (Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Tech (Bachelor of Technology) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Tech (CSE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Tech (ECE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Tech (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Tech (Hons#C.B.S.E#Class X 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Tech (IT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              B.TECH COMPUTER SCIENCE ENGINEERING\\n(Degree of Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Tech degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Tech Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Tech, Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Tech. - M.Tech. Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Tech. (Bachelor of Technology) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Tech. (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.Tech. Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Tech. graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.Tech(Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         B.Tech/(B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.Tech\\nPursuing B.TECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Tech#12th#10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      B.Tech#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.Tech#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.Tech#High School and Higher 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     B.TECH#Madhyamik 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.Tech#Master of Technology (M.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B.Tech#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Tech#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.Tech#PTU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B.Th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.U.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.V 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B.V.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B.V.Sc &A.H#Bachelor of Veterinary Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             B.V.Sc. (Bachelor of Veterinary Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.V.Sc. (DVM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          B.V.Sc. & A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B.V.Sc. & A.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B' Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B'da Cameroon 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B'Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B) Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B*S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B/A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B/A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   B/A Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       B/A. ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B/D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B/S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B/S B/A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           B/S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B/S M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               B/S#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              B/S#M/S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B&A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B&G 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B&H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            B#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 B#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  B#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        B>Master of Arts#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ba 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ba 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                18230 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA\t\t\tBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA\t\t\tBachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA\t\tBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA\tBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA\tSOCIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA          \\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA     Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA   of   Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA  Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA  HUMANITIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA - &nbsp 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA - Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA - Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA - Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA , MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA ,Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA ; MAY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA (ACCOUNTING) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA (AUDITING)#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA (Bachelor of Art) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA (Bachelor of Arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA (Bachelor of Professional Studies) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA (Bachelors of Arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA (Hon) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA (HON) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA (HONORS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA (Honors) Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA (Honors)#Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA (Honors)#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA (Honours) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA (HONOURS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA (Hons-Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA (HONS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA (hons) ; 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA (Hons) . 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ba (Hons) Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA (Hons) Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA (Hons) Business Studies#Higher National Diploma HND 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA (Hons) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA (Hons), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA (Hons): 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA (Hons)#Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA (liberal arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA (MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA / AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA / Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA / HISTORY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA / MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA \\nResearch Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA & BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA & MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA & MA Bachelor & Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA Administration of (Criminal) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA ADMINISTRATION OF JUSTICE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA and MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA and MA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA and MA#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA and MA#Mentor of M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA and MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA and Psychology BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA ART 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA BusinessAdministration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA COMMUNICATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA CRIMINAL JUSTICE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA cum 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  185 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  501 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA DEGREE -  HISTORY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA DEGREE - HISTORY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA Degree :* 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA Degree- 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA Degree:#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA Degree\\n*Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA Degree#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA Degree#AA Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA degree#AA#AS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA degree#Advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA Degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA Degree#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA degree#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA Degree#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA Degree#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA Degree#BACHELOR of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA Degree#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA degree#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA Degree#BS Degree#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA Degree#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA Degree#Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA degree#Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA double 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA dual degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA ECE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA Economics Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA Education (Licenciature) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA Education of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA ENGLISH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA ENGLISH LITERATURE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA from BC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA Honors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA Honours ( 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA Honours Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA HONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA Hons Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA Humanities 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA I/O 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA IN PHILOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA Integrative Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA Joint Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA JOURNALISM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA Liberal Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA MASS MEDIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA mathematics degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA of  Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA of Business          Temple 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA of Business administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA of BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA OF COMMUNICATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA of Emergency MGMT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA of Mathmatics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA of Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA of Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA of Theatre Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA PHILOSOPHY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA plus MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA POLITICAL SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA PSYCHOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA Social Work Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA sought 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA THEATRE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA Undergraduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA- Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA- Fine Arts and BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA------ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA-BGS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA-U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA-�-BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA, BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA, Degree#AAS, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA, IS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA, JOURNALISM and BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA, MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA, MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA, media arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA, MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA, Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA,GOVERNMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA??? ??? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA. Accounting degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA. Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA. and M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA. Arts Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA. COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA. SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA.ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA.LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA(Bachelors of\\nBusiness Admin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA(Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA(Honors) Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA(Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA(Hons) Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA(HONS) Degree#BTEC National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA(Hons), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA) and Political Science (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA) and Spanish (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA) and Visual Media (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA) Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA) Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA) BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA) Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA) Bachelor of Arts Degree#AA#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA) Bachelor of Science#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA) Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA/AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA/B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA/BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA/BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA/BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA/BS\\nBachelor of Science Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA/BS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA/BSW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA/MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA/MD#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA/MD#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA/MMIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA\\n*SGA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA#'A' Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA#A.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA#A+ Certification Course 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   43 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA#AA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA#AA#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA#AAS#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA#AAS#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA#Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA#Associate Of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA#Associate of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA#Associates Degree#Bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA#Associates of Arts & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#Associates of\\nScience#Baccalaureate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#B.A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  156 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA#BA CLEG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA#BA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA#BA#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#BA#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA#BA#BA#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA#BA#BA#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA#BA#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA#BA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA#BA#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#BA#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA#BA#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#Baccalaureat#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#Bachelor   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA#Bachelor Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA#Bachelor of Art degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   56 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#BACHELOR OF ARTS ICC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#Bachelor of Arts#AA#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA#Bachelor of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA#Bachelor of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#Bachelor of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#Bachelor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#Bachelor of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#Bachelor of Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA#Bachelor's Degree#BA#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA#Bachelor's degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#Bachelor's of Arts Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA#Bachelor#AA#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA#Bachelors Degree#BA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA#Bachelors of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA#Bachelors/Higher Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   48 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA#BS Degree#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA#BS#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA#BS#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA#BS#Graduate#Master of Strategic Studies degree \\n \\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA#BS#MFA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#BS#Ministry (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA#BTEC National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA#Business Studies#GRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA#CA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA#Certificiate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#CIEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA#Communications Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA#Communications. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#completed Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#Concurrent Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA#D.A.A.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA#DC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA#Degree of Jurisprudence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA#Degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA#Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ba#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   49 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA#Diploma and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA#Diploma Universit� de Bordeaux 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA#Diploma#B Th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA#Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA#Diploma#Bachelor Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA#Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA#Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA#Diploma#International Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA#District of Columbia\tBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA#ETC of BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA#EXCELLENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA#EXPERIENCE#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#Faculty of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA#GRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA#GRADUATE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA#Graduate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA#Graduate#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#HHS Academy Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA#High Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA#High School\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#Higher Secondary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#Honors Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA#Honors Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA#Honours Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA#International Baccalaureate (IB)/American Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA#International Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA#JD#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA#JD#MBA, MA#Masters Degree#M. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#JOB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#Liberal arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA#M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA#M.B.A#BA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA#MA#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#MA#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA#MA#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#MA#Post-MA#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA#Marymount's BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA#Master Degree#PhD Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA#Master Of Business Administration#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA#Master of Public and International Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA#Master of\\nArchitecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA#master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#Master's of Arts#Masters of Arts#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#Master#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA#Masters of Divinity Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA#Masters#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA#Masters#Masters   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA#matriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#MAY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA#MBA    Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA#MBA selected 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#MBA#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       BA#MBA#Master of Arts#Master of Business Administration#MA/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA#MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#MFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BA#Mid#Junior 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA#MPA Post-graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#MPA Post-graduate\\ndegree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BA#MS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA#MS#MA#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA#MS#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BA#MSL (Master of Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#N.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BA#Northern Virginia AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#NVCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA#Online Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA#OR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#PAGE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA#PhD#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA#PhD#GRI degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA#Post Graduate Studies (Masters) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA#Post-graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BA#Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BA#Recent Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BA#Regents Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BA#Republic of Congo 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BA#S#MEMERSHIPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#SEI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA#SH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#TCK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BA#UMUC#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BA#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA#US 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BA#Vermillion, S. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BA#Visiting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BA#W.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BA+MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BAA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BAA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BAA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BAAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BABA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BABL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bac helor's Degree \\n*BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bac#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Baccalauoreate Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Baccalaureat 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACCALAUREAT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Baccalaureat (high school diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Baccalaureat de Technicien Superieur (BTS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Baccalaureat#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  109 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACCALAUREATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Baccalaureate (A.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Baccalaureate (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Baccalaureate (high school diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Baccalaureate Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Baccalaureate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Baccalaureate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   60 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Baccalaureate Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Baccalaureate degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Baccalaureate Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Baccalaureate Degree#B.E#Master's#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Baccalaureate Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Baccalaureate Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         baccalaureate degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Baccalaureate Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Baccalaureate High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Baccalaureate II 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Baccalaureate of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Baccalaureate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACCALAUREATE OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Baccalaureate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Baccalaureate of Arts#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Baccalaureate of Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Baccalaureate of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Baccalaureate of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Baccalaureate of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Baccalaureate of Nursing#BSN#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Baccalaureate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   68 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACCALAUREATE OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Baccalaureate of Science (BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Baccalaureate of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Baccalaureate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Baccalaureate of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Baccalaureate of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Baccalaureate of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Baccalaureate of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Baccalaureate Philosophy (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Baccalaureate program diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Baccalaureate Social Work (BSW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Baccalaureate Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               baccalaureate?s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               baccalaureate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Baccalaureate/Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Baccalaureate/High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Baccalaureate\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Baccalaureate#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Baccalaureate#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Baccalaureate#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    baccalaureate#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Baccalaureate#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Baccalaureate#B.A#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Baccalaureate#Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Baccalaureate#Bachelor of Arts Degree#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Baccalaureate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACCALAUREATE#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Baccalaureate#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Baccalaureate#Bachelors in Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Baccalaureate#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Baccalaureate#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   baccalaureate#French Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            baccalaureate#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Baccalaureate#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Baccalaureate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Baccalaureate#IB#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Baccalaureate#M. I. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Baccalaureate#Master of Arts#Juris Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     baccalaureate#Masters Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Baccalaureate#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Baccalaureates of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Baccalaureus 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACCALAUREUS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Baccalaureus#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                              Baccalaureus#Bachelor of Law, (LL.B)) (Equivalent of Juris Doctor)#Postgraduate#Master of Science#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Baccalaureus#Bachelor of Law, (LL.B)#Postgraduate#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         baccalaur�at 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Baccalaur�at 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Baccalaur�at diploma#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Baccalaur�at) high school degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Baccalaur�at#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Baccalaur�at#Diploma#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Baccalaur�at#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Baccalaur�at#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Baccalaur�at#high-school\\ndiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bacelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bacelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bach 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bach of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bach. Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bach. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachalor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachalor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachalor#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachel 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelar of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachellor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachellor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELO DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bacheloe Degree of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelopr of Arts\\n(BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             bACHELOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 3611 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   89 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor\tof\tBusiness\tAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor\tof\tScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor \tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor \tEngineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor \tof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor  \tof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor          of          Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor          of          Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor          of          Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor          of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor          Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor         of          Business          Administration          (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor         of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor        of        Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor        of        Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor       of        Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor     of      Liberal      Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor     of      Science      degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor     of     Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor    of    Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR    OF    ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor    of    Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor   and   Master   of   Science   Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor   of   Applied   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor   of   Applied   Arts   and   Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor   of   Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor   of   Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  243 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR   OF   ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor   of   Arts   (B.A.) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor   of   Arts   (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor   of   Arts   (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor   of   Arts   (Hons.) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor   of   Arts   and   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor   of   Arts   and   Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor   of   Arts   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR   OF   ARTS   DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor   of   Arts   degree#Bachelor's   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR   OF   ARTS   PSYCHOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR   OF   ARTS   PSYCHOLOGY ,     M INOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor   of   Arts#B. Graduate and Professional 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor   of   Arts#Baccalaureate#IB#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor   of   Arts#Bachelor   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor   of   Business   Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor   of   Business   Administration#Bachelor   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor   of   Business   Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor   of   Business   Management#Associate's   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor   of   Chemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor   of   Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor   of   Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor   of   engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor   of   Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR   OF   ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor   of   Engineering   (B.Eng.) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor   of   Env.   Design   �   Arch. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor   of   Fine   Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor   of   Fine   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor   of   Fine   Arts   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor   of   Health   Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor   of   Humanities   and   Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor   of   Information   Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor   of   Information   Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor   of   Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor   of   Landscape   Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor   of   Law   (LL.B.) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor   of   Liberal   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor   of   Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor   of   Management       Sep 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor   of   Medical   Science   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor   of   Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor   of   Medicine   &   surgery   (M.B.B.Ch.) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor   of   Medicine   and   Bachelor   of   Surgery   (M.B.B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor   of   Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor   of   Petroleum   Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor   of   Pharmaceutical   Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor   of   Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor   of   Recreation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor   of   science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  270 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR   OF   SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor   of   Science   (B.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor   of   Science   (CS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor   of   Science   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor   of   Science   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor   of   Science   Degree#Associate   of   Applied   Science   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR   OF   SCIENCE   DEGREE#AZ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor   of   Science   degree#Bachelor's   (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor   of   Science   of   Business   Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor   of   Science#Associate   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor   of   Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor   of   Science#B.S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor   of   Science#Bachelor   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor   of   Science#Bachelor   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor   of   Science#Bachelor   of   Science   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor   of   Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor   of   Science#ENSEA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor   of   Science#Master   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor   of   Social   Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor   of   Studio   Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor   of   technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor   of   Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor   of   the   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor   of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor   of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor  \\n  of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor  degree of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor  degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor  of  Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor  of  Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor  of  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR  OF  ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor  of  Arts  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor  of  Arts  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor  of  Arts#Associate  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor  of  Arts#Masters  of  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor  of  Business  Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor  of  Business  Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor  of  Engineering#Bachelor   of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor  of  Laws  and  Bachelor  of  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR  OF  MANAGEMENT#School  of  Business  Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor  of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor  of  Science  (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor  of  Science  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor  of  Science#Associate  Degree#Associate   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor  of  Science#Associate  of  Applied  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor  of  Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor  of  Science#Masters  of  Aeronautical  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor  of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor  of Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor  of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor  of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR  OF MUSIC DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor  of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor  Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor  of Science#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor  of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor  s   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR - B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor - Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor 'Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor 'degree Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor 's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor 's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor 's of International Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor 's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor 's Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor (B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor (BIT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor (BSC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor (honor) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor *of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor / Associates level Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor / Associates level Degree#ISBW - Masters level degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor / Masters#Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor \\n\\nof Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor \\n\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor \\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor \\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor \\nof \\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor \\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor \\nof Arts#Distinction Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor \\nof Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor \\nof Management Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor \\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor \\nof Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor \\nof Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor \\nof Science Degree#Master?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor \\nof Science#Master of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor \\nof ScienceMajor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor & Law Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor & Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor & Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor & Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor & Masters of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor <BR>of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Administration#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor and Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor and Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor and Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor and Graduate Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor and Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor and Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor and Master degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor and Master Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor and Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor and Master of Arts#BA/MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor and Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor and Master of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor and Master of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor and Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor and Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor and Master of Science Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor and Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor and Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor and Masters of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor and Masters of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor and Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor and Specialization 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor Applied Developmental 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor Art of Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   37 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Arts (BA)#Associate of applied science degree (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Arts (BA)#Masters Degree#Associate of applied science degree (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Arts of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor Associate (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Bachelor of Arts Bachelor of Science Bachelors Bachelors of Arts\\nBachelors of Arts#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Bus. Adm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   63 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Business Administration conc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Business Associate#B.B.A) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor candidate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor Commerce (equiv MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Community health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Computer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor Computer Networking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Computer Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor conducive 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor course 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor courses#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Criminal Justice Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Cybersecurity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  619 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2352 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   68 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Degree\t\\n*Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Degree (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Degree (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor degree (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Degree (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree (BA)#Diploma#Associates Degree#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Degree (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Degree (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR DEGREE (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Degree (BS)#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Degree (BVMS)#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Degree (COMPLETED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor degree (Licence) and Master#degree (DEUG) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor Degree (Unfinished) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Degree \\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor degree Aeronautical Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Degree and Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Degree Arts of Economics#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor Degree Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Degree Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor degree Linguistic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor Degree of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor Degree of Advertising and Publiciting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Degree of Applied Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Degree of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR DEGREE OF ARCHITECTURE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor degree of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Degree of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree of Art and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR DEGREE OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree of Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Degree of Arts#B.A.Mgt 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Degree of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Degree of Business Administration#Associate Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor Degree of Business Administration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Degree of Business Law & regulations\\nDegree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR DEGREE OF CIVIL ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Degree of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree of Computer science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Degree of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor degree of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Degree of Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor degree of engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor Degree of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor degree of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Degree of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor degree of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor Degree of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree of Fine Arts#Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Degree of Forest Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Degree of Gov 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Degree of Hospitality Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Degree of Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Degree of International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Degree of International Marketing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor degree of LAW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Degree of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Degree of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor Degree of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor Degree of Math 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor degree of Medicine & Surgery (M.B.Ch.B) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree of Medicine and Surgery \\n(Equiv. of US MD Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor Degree of Multidisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor degree of nursing science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor degree of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Degree of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   61 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR DEGREE OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor degree of Science#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor degree of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Degree of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor Degree of Sciences#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Degree of Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Degree of Specialization 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Degree of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor Degree of\\nCommerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR DEGREE ON SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR DEGREE SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Degree- Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor degree, (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Degree?????????????????????????????????????????????????????????????????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree.    ...............#High School Diploma .......................... 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Degree. BBA#Bachelor of Business Administration#MBA#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor Degree.\\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Degree's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Degree(S)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Degree\\n*Associate Degree\\n*High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR DEGREE\\n\\nMaster 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Degree\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR DEGREE\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR DEGREE\\nPOLITICAL SCIENCE WITH SOCIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Degree#A level Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor degree#A.A.S Hospitality Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Degree#Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Degree#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Degree#AS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            bachelor degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree#Associate Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Degree#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR DEGREE#ASSOCIATE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Degree#Associate Degree#Analysis and Programming Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Degree#Associate Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Degree#Associate Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor Degree#Associate Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor degree#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Degree#Associate Of Applied Science Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor degree#Associate of Arts#Bachelor degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Degree#Associate\\nDegree#Diploma#District of Columbia Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Degree#Associate#Associate(tm)s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree#Associate`s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor degree#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR DEGREE#ASSOCIATES DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree#Associates Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor Degree#Associates Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor Degree#Associates of Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Degree#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree#B.B.A#Diploma#D.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Degree#B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor degree#B.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Degree#B.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor degree#B.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Degree#B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor degree#B.Proc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Degree#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Degree#B.Sc) or Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Degree#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR DEGREE#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor Degree#baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor degree#bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor Degree#bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree#Bachelor Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Degree#Bachelor of Arts (Regents) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Degree#Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Degree#Bachelor of Business\\nAdministration#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Degree#Bachelor of Science \\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Degree#Bachelor of Science\\n\\n\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Degree#Bachelor of Science\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor degree#Bachelor of Science#Bachelor's Degree#Bachelor degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor degree#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            bachelor degree#BACHELOR'S degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree#Bachelors Degree#Paralegal Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor degree#BS; BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Degree#BSB/M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor degree#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree#BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Degree#Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree#Comprehensives Business   Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree#CPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              bachelor degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor Degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Degree#Doctoral Degree#Doctor of Chiropractic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Degree#E.D.I.M#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree#Faculty of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor degree#High school degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree#High school Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor degree#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Degree#High School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor Degree#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Degree#Honors Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Degree#Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Degree#Inter#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor degree#ITIL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor degree#law (B.Proc ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor degree#LL.B#U.S. Juris Doctor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree#LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor Degree#M. S#M. S. Univ#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Degree#M.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor degree#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor Degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Degree#Master Degree Hydrogeology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor Degree#Master Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Degree#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor Degree#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Degree#Master's Degree#professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Degree#Masters of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Degree#Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor Degree#Mater Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor degree#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor degree#NJIT#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor degree#O.G.S Grammar school, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor Degree#Post Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Degree#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree#Professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor degree#Republic of Congo 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Degree#Teachers' Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor Degree#textbooks. Degree#Bachelor Degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor degree#TOEFL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor degree#Trilingual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor Degree#UMUC#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Degree#W.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor degree#WV#WV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Degreein 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor Degrees of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor Degrees#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor Diploma of Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor diploma#diploma of graphic artist of books 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor Diploma#Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Electrical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor English 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Environmental and Planning Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor equivalence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Equivalent#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Exercise Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor f Science(B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor Fall 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor Fine Arts (BFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Fine of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor French 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Healthcare Management#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Honours Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor if Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor in 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor in Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor in Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor in arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor in Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor in ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor in Arts (B.A)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor in Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor in Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor in Arts Degree#Applied Science Degree#Liberal arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor in BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor in Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor in Dental Surgery (B.D.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor in Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor In Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor in M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor in science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor in Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor In Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor in Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor in Science (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor in Science Accounting degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor in Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor in Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor In Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor in Science of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor in science\\n          degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor in Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor in Technology (B.Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor inBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Individualized Study (BIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor inJan#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Interdisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR MERCANTILE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Nursing Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor o f Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor o Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor o/Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of\t Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of          Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of         Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of         Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of         Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of       Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of     \\n          Fine Arts#B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of    Business Administration\\n*B. Admin (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of    Education#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of   Business  Administration#Associate Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of   Gov 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of   Mechanical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of  Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of  Accounting and Auditing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of  Architecutre 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of  Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of  Arts#theU.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of  Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of  Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of  Business Administration(B.B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of  Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of  Commerce (B.Com) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of  Communication#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of  Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of  Computer Science(B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of  Computer Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of  Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of  Education degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of  Electrical & Electronics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of  Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of  Engineering#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of  Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of  Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of  International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of  Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of  Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of  Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of  Politics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of  private 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of  Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   97 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF  SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of  Science (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of  Science \\nBachelor of  Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of  Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of  Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of  Science#B.S.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of  Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of  Science#BSEE#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of  Social Work#Bachelor of Social Work Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of  Technological  machines & Equipment 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of  Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of _____ : ______\\nSilver 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of -Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of .Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of .Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of .Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of (Advanced) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of (Arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of \\n          Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of \\n \\nScience#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of \\n\\nBusiness Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of \\n\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of \\n\\nScience Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of \\nArchitecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of \\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of \\nArts (BA)#Degree#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of \\nArts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of \\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF \\nBUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of \\nBusiness Administration#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of \\nEngineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of \\nFine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of \\nOrganizational Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of \\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of \\nScience degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of \\nScience Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of \\nScience#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of \\nScience#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of \\nTechnology (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of <BR>Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of A#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Academic Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   74 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor Of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Accountancy and Bachelor of Laws (dual degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Accountancy and Second 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF ACCOUNTANCY DEGREE(B.Ac) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Accountancy graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Accountancy Honors' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Accountancy/Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Accountancy#Bachelor of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Accountancy#Bachelor's degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Accountancy#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Accountant Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  115 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Accounting \\n \\nBachelor of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Accounting \\n\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Accounting and business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Accounting and Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of accounting and finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Accounting and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Accounting Bachelor of Finance#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Accounting degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Accounting Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Accounting, Double Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Accounting\\n Bachelor of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Accounting\\nBachelor of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Accounting#Associate of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Accounting#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Accounts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Act  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Acts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   76 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Administration (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF ADMINISTRATION (BA)#BACHELOR OF ADMINISTRATION (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Administration (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Administration Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Administration Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Administration#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Administrative Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Administrative Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF ADMINISTRATIVE SERVICE MANAGERS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Administrative Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Advanced Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Advertising 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Aeronautical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Aeronautics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Aerospace \\nEngineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Aerospace Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Aerospace Engineering and Mechanics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Aerospace Engineering#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Aerospace Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Agribusiness Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Agric 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Agricultural Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Agricultural Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Agricultural Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Agriculture (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Agriculture and Environmental Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Agriculture and Natural Resources 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Agriculture Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Agronomy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Airway Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Alts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of American Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Analyst Programmer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Animal Husbandry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Animal Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Animal Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Animation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Anthropology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Applied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Applied Accounting \\n*Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Applied Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Applied Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Applied Arts & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Applied Arts & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Applied Arts & Sciences#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Applied Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Applied Arts and Science (BAAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Applied Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Applied Arts and Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Applied Arts and\\nSciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Applied Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Applied Arts#Bachelor of Applied Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Applied Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Applied Business and Entrepreneurship#DNC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Applied Communication Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Applied Computer Science#Associates of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Applied Computing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Applied Health Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of applied Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Applied Informatics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Applied Information 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Applied Information Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Applied Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Applied Liberal Arts#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Applied Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Applied Mathematics and Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Applied Mathematics degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Applied Medical Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Applied Physics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of applied science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  165 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF APPLIED SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of applied science - fire science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Applied Science (B.A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF APPLIED SCIENCE (B.A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Applied Science (B.A.Sc.) focused 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Applied Science (B.A.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Applied Science (B.A.Sc#Associate of Arts and Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Applied Science (B.A.Sc#Associate of Science (A.S#HS diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Applied Science (B.A.Sc#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Applied Science (B.A.Sc#Bachelor of Applied Science (B.A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Applied Science (B.A.Sc#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Applied Science (B.A.Sc#High School\\nDegree#High School Diploma#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Applied Science (BAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Applied Science and Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Applied Science and Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Applied Science and Technology#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Applied Science Degree#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Applied Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Applied Science#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Applied Science#Associate of Arts and Sciences#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Applied Science#B.A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Applied Science#B.ASc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Applied Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Applied Science#Bachelor of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Applied Science#Bachelor of Business Administration#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Applied Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Applied Science#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Applied Science#MBA#Doctor of Law (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Applied Science#Not#Bachelor of Applied Science (B.A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Applied Science#UMUC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Applied Sciences#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Applied Statistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Applied Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arabic Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF ARABIC STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arbitron Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Architectural Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Architectural Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Architectural Engineering (B.A.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Architectural Engineering (BAE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Architectural History 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Architectural Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Architectural Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  302 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF ARCHITECTURE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Architecture ; B. Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Architecture ............................................................................. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Architecture (B. Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF ARCHITECTURE (B. ARCH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Architecture (B. Arch) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Architecture (B.Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Architecture (B.ARCH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Architecture (B.Arch) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Architecture (B.ARCH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Architecture (B.Arch): First Professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Architecture (BARCH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Architecture (Professional Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Architecture [B.Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Architecture & Minor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Architecture and Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Architecture and Environmental Design (B.Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Architecture degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Architecture Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Architecture Prairie#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Architecture, B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Architecture\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Architecture#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Architecture#B-ARCH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Architecture#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Architecture#Bachelor of Mechanical Engineering#Associate Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Architecture#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Architecture#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Architecture#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Architecture#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Architecture#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Architecture#Diploma of Baccalaureate/High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Architecture#Master of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Architecture#Masters of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Architecture#Professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Architecural Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF ARST/COMMUNICATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  906 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of ART 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR of ART 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF ART 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Art - Applied Behavioral Sciences (Advanced Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Art - Psychology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Art (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Art (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Art (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF ART (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Art (BA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Art (BA) University Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Art (BA)#Degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Art (BA)#Masters of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Art (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Art (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Art (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Art & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Art and Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Art and Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Art and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Art and Science (BAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of art and Science B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Art and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Art Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Art Criminology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Art degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF ART DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Art Degree (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Art Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Art Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Art Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Art Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Art History 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Art in (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Art Interdisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Art Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Art of Biological Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Art Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Art s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Art Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Art Sociology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Art Studio Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Art Theatre 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Art, Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Art, Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of art's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Art's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Art's & Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Art's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Art's Degree#Bachelor of Art's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Art's#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Art/ Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Art/Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Art#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Art#Associate Degree  of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Art#Associate of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Art#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Art#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Art#B.A. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Art#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Art#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Art#Bachelor of Art \\nCertificate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Art#Bachelor of Art\\nCertificate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF ART#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Art#Bachelor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Art#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Art#Bachelor's Degree#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Art#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Art#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Art#diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Art#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Art#English          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Art#high School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Art#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Art#Master of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Art#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Art#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Art#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     bachelor of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   43 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                48014 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   60 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor OF aRTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR of ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR OF ARTs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1277 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts \tMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts  \t\t\t\t\tMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts         Doctorate of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts    (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts   (Bachelor Degree)#Master of Arts       (Master Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF ARTS   COMMUNICATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF ARTS   FOREIGN AFFAIRS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts  (B.A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts  (B.A.) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF ARTS  FOREIGN AFFAIRS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts - BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR OF ARTS - BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF ARTS - COMMUNICATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF ARTS - ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF ARTS - ENGLISH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts - French (BA)\\n*Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF ARTS - HISTORY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF ARTS - SOCIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts -B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF ARTS ? SOCIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts ( BA ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts ( Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts ( Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts (A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR OF ARTS (A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts (AB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts (B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts (B. A.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts (B. A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  420 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR OF ARTS (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts (B.A. Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR OF ARTS (B.A. DEGREE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts (B.A.) and Bachelor of Architecture (B.Arch) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts (B.A.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts (B.A.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   33 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF ARTS (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts (B.A) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts (B.A). And Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts (B.A#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts (B.A#and Economy)\\nDegree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts (B.A#Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts (B.A#Associate of Arts and Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts (B.A#Associate of Arts and Sciences (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts (B.A#Associate of Arts#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts (B.A#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts (B.A#Associate of Science (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts (B.A#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts (B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts (B.A#Bachelor Degree#Sc.\\nDegree#Master's#Master Degree#Administrative Medical and Terminology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts (B.A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts (B.A#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts (B.A#Bachelor of Arts (B.A#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts (B.A#Bachelor of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts (B.A#Bachelor of Science#B.S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts (B.A#Bachelor of Science#B.S#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts (B.A#Bachelor s Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts (B.A#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts (B.A#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts (B.A#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts (B.A#Degree#Doctor of Law (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts (B.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts (B.A#Doctor of Medicine (M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts (B.A#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts (B.A#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts (B.A#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts (B.A#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts (B.A#Master of Arts (M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts (B.A#Master of Arts (M.A#Virginia. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts (B.A#Master of Business Administration (MBA)#Doctor of Law#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts (B.A#Master of Public Administration (M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts (B.A#Master s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts (B.A#MOS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts (B.A#Partnership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts (BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts (BA / AB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts (BA degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF ARTS (BA FINANCE & ECONOMICS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  949 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR OF ARTS (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   37 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts (BA) (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts (BA) Accounting Honours Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts (BA) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts (BA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts (BA) Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts (BA)#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts (BA)#Associate of Fine Arts#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts (BA)#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts (BA)#Associate of Science (AS)#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts (BA)#B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts (BA)#bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts (BA)#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts (BA)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts (BA)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts (BA)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts (BA)#Degree#Master of Public Administration (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts (BA)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts (BA)#Doctor of Law#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts (BA)#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts (BA)#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts (BA)#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts (BA)#Master of Arts (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts (BA)#Master of Science#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts (BA)#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts (BA)#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts (BA)#school of art#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF ARTS (Bachelor of Science BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts (BFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF ARTS (BFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Of Arts (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts (BS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts (CUM LAUDE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts (degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF ARTS (ECONOMICS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts (Education) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF ARTS (ENGLISH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF ARTS (EXPECTED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF ARTS (GRADUATE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF ARTS (HISTORY) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts (Hon.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts (Honors) (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts (Honors) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts (Honours) - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts (Honours), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts (Hons) English, & Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR OF ARTS (JOURNALISM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts (Music) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR OF ARTS (PSYCHOLOGY) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts (R.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts (R.B.A#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts (RBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts (Science) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF ARTS (SOCIOLOGY) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts (Spanish) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts (SWSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts [B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts \\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts & Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts & Humanities 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts & LLM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts & Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF ARTS & SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts & Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts & Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF ARTS & SCIENCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts & Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts & Sciences#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts &ndash 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF ARTS ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts Achieved 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF ARTS Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of arts and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts and Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts and Associate of Liberal 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts and Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts and Bachelor of Laws (B.A, LL.B) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts and Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts and Bachelor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts and Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts and Humanities 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts and Humanities (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts and Humanities Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts and Letters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts and Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts and Master of Arts, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts and Master of Arts#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts and Professions 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   95 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF ARTS AND SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts and Science (B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts and Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts And Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF ARTS AND SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts and Science Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts and Science Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts and Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts and Science#History of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   80 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts and Sciences degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts and Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF ARTS AND SCIENCES DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts and Sciences Kinesiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts and Sciences, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts and Sciences#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts and Sciences#Master of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts and Sciences#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts and Teaching Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts and Visual Technologies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts and Visual Technology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts and\\nSciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts Awarded 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF ARTS BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF ARTS COMMUNICATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts Communications Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts Computer Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts Criminology (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts cum laude 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF ARTS CUM LAUDE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts Cum Laude degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              bachelor of arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  483 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2401 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor Of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR of ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF ARTS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF ARTS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   55 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts Degree\t\t\t\t\t\t  Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts Degree \t\t\t\t     Completed Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF ARTS DEGREE - ENGLISH (MAJOR) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts Degree (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts Degree (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts degree (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts Degree (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF ARTS DEGREE (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts Degree (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts Degree and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts Degree Conferred 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts Degree Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts Degree Ministry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts Degree Skilled 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR OF ARTS DEGREE WITH A MAJOR#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF ARTS DEGREE WITH A MAJOR#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts Degree- BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts Degree, BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Of Arts Degree(BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts Degree#A+ Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts Degree#Achieved Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts Degree#Acting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts Degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts Degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts Degree#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts Degree#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF ARTS DEGREE#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts Degree#BA Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts degree#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts degree#Bachelor of Arts BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts degree#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts Degree#Bachelor of Arts Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF ARTS DEGREE#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts degree#Bachelor's (BA) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts degree#Bachelors#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts Degree#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts Degree#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts degree#Comprehensive liberal arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts Degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts Degree#DeMatha Catholic HS. - Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Of Arts Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts degree#EXPERIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts degree#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts Degree#Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts Degree#Indies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts Degree#Juris Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts Degree#LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts Degree#Master of Applied Social Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts degree#Master of Architecture degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts Degree#Master of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts Degree#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts Degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts Degree#Master's degree#Master of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts degree#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts Degree#Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts degree#P>Associate degree#P>Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts Degree#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts Degrees#International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts Double Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts ECONOMICES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF ARTS ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts ESL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts Fin. & Man 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts Government 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts Honours - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts Honours Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts HS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF ARTS HUMANITIES CONCENTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR OF ARTS IN ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts inPhilosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts Joint Honors Degree#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF ARTS MARKETING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts Music Master of Arts#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF ARTS OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts of Business Administration\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts of English 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts of Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts of Urban Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts Psychology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts Psychology Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts School of Applied Professional Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts School of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts science  (partial degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts Sociology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts Sociology of Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts Strategic Intelligence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts with Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts �-S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts- Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts- B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts- Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts-BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts, (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts, (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts, Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts, Administration of Justice#WDC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR OF ARTS, ADVERTISING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts, B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts, B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts, BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts, chef de cuisine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF ARTS, COMMUNICATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR OF ARTS, COMMUNICATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts, Criminology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts, degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts, Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF ARTS, DUAL DEGREE#APRIL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts, duel degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF ARTS, ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of arts, economics and histORY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts, Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts, Individualized Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF ARTS, MARKETING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF ARTS, PHILOSOPHY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of arts, political science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF ARTS, PSYCHOLOGY & BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts, S&BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts, U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts; Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts: Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts: Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts??????????????????????????????????????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts.  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts. (Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts. (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts. Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts(B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts(BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts(Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts) BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF ARTS/BUSINESS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts/Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts/Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts/Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts\\n(BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts\\n*Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts\\n*Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts\\n*Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts\\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts\\nDual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF ARTS\\nHonors Degree#YEAR DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF ARTS\\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF ARTS\\nOPTIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts& Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF ARTS&SCIENCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#12TH Grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#A-Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#A.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts#A.B. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#AA#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts#AAS#MS#MS#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#ABILITIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#Advanced Diploma and Advanced Placement Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts#Anthropology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#APR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts#Associate Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts#Associate Degree of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts#Associate of Applied Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts#Associate of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts#Associate of Arts (A.A) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#Associate of Arts#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Associate of Arts#Bachelor of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Associate of Arts#Bachelor of Science#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#Associate of Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#Associate of Landscape Horticulture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts#Associate of Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#Associate of Occupational Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts#Associate of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#Associate\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#Associate&rsquo;s of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts#Associate#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#Associates Degree#Maryland Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#Associates of Applied Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts#Associates of Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#Associates of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Associates\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Associates#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Association of Government Accountants 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts#B. A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   44 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF ARTS#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF ARTS#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts#B.A./M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts#B.A.ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#B.A.I.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#B.A.m 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#B.S#London 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts#B.S#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  121 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF ARTS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts#BA & Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts#BA Edu 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts#BA, B) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#BA#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#BA#Bachelor of Arts#BA#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts#BA#Bachelor of Arts#BA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#BA#Bachelor of Music#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts#BA#Bachelor of Science#BS#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#BA#High School Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts#Baccalaureus#Bachelor of Law - LL.B#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts#bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts#Bachelor Industrial design (college of fine and applied arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    bachelor of arts#Bachelor of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  362 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF ARTS#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#Bachelor of Arts (B.A#High-school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor Of Arts#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#Bachelor of Arts Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts#Bachelor of Arts Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Bachelor of Arts#A's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#Bachelor of Arts#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF ARTS#Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#Bachelor of Arts#Bachelor of Arts#Bachelor of Arts#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#Bachelor of Arts#Bachelors of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts#Bachelor of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Bachelor of Arts#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Bachelor of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#Bachelor of Arts#Juris Doctor#Masters of Law degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#Bachelor of Arts#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts#Bachelor of Commerce (B.Com) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts#Bachelor of Law (Honor Graduate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Bachelor of Law (LLB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts#Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts#Bachelor of Management Studies)\\n*Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#Bachelor of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   65 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF ARTS#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Bachelor of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#Bachelor of Science#Bachelor of Secondary Education (AB/BS-BSE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#Bachelor of Science#Bachelor of Secondary Education#BS�BSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Bachelor of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Bachelor?s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF ARTS#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Bachelor's Degree#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#Bachelor's Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#Bachelor's#Master#Master of Arts#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#bachelor#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#BACHELORS OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Bachelors of Science#Honors Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#bachelor�s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#Bahelor of Arts#ABT Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#BAIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#based Media    Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#BR>Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Business Administration and Management#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Business French Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts#Business studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF ARTS#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Cameroon.\\n\\n*Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#CIRI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Citation of Achievement 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF ARTS#CLASS OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#CLEG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Communications Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts#Computer Programming and Operations Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF ARTS#CONCENTRATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts#cont'd 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF ARTS#CRIMINOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts#Date of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#DC#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts#DEANS'S LIST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts#Degree#Bachelor of Arts#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#DIA#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   67 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF ARTS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Diploma#A. G. Barrili 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Director of Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#DIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF ARTS#DISTINCTION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#Divisional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Doctorate of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts#Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#Engineering Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts#English Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#Ethiopia.\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#Executive Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#F.A.L.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF ARTS#GRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Graduate Degree#Undergraduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Graduate#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts#graduation. Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts#gwulogo.gif] Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts#H.S., Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   41 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF ARTS#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#High School Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#High School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts#Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts#Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts#Interdisciplinary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Intermediate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts#Joint Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#Juris Doctorate Law\\nDegree#A.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts#L.L.B#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#L.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts#Lahore 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#LEAP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#LER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#LL. B BUSINESS LAW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts#M D#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#M.B.A/ M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF ARTS#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts#M.D#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF ARTS#MAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       bachelor of arts#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   34 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts#Master of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Master of Business \\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts#Master of Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Master of Education#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#Master of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#Master of Health Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#Master of Human Resource Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#Master of International Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#Master of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts#Master of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Master of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts#Master of Science#Bachelor \\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts#Master of Science#ITSM) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#Master of Science#Master of Business\\nAdministration dual degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#Master of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#Master of\\nBusiness Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts#Master\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Master\\nof Arts#Dakota 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF ARTS#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Masters Degree (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#Masters of Aeronautical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts#Masters of Business Administration#L.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#Masters of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#Masters of Health Services Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts#Masters of International Public Administration#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Masters of Sacred Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#Masters of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Masters of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Masters#Juris Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#Masters#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#Masters#PT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts#MBA#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#Md 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Arts#MEMBERSHIPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF ARTS#MINOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts#MRI Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#Nigeria Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#Nursing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#NYU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts#Philipppines 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Philosophy of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#Post Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR OF ARTS#Post-Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Post-graduate Diploma#Doctor of Philosophy#Masters#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#Post-Graduation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Arts#Postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts#Postgraduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Arts#Postgraduate Diploma#Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#PPE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Arts#Primary Degree#BA#Bachelor of Arts#Primary Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF ARTS#PSYCHOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#Psychology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#RBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Arts#Regents BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts#RESTAURANT MANAGEMENT DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Arts#Russian Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Arts#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts#Scholar Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Arts#SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts#Secondary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts#Special Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Arts#theU.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#Translation Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Arts#U.S. bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Arts#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Arts#Undergraduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#UVA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Arts#VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#Virginia Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Arts#Washington D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Arts#WES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Artsand Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of ArtsB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of ArtsBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of ArtsEnglish 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of ArtsFlorida 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of ArtsJanuary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of ArtsLouisiana 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of ArtsMajor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of ArtsPolitical Science#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of ArtsTechnical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Arts� 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Audio Arts & Acoustics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Audio Production 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Aviation Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Aviation Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Avionics Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR OF B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Bank Management (BBM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Banking Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Basic Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Behavioral 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Behavioral Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Behavioral Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Biblical Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Biblical Studies#Beauty Culture Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Biochemical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Biochemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Bioinformatics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of biological 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Biological 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Biological Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Biological Science and Health Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Biological Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Biological Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF BIOLOGICAL SCIENCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Biological Sciences (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Biology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF BIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Biology (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of biology and minor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Biology Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Biology#Bachelor of Russian 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Biomedical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Biomedical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Biomedical Engineering#10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Biomedical Engineering#B.B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Biomedical Engineering#Master#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Biomedical Laboratory Technology#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Biomedical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Biosystems Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Biotechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Biotechnology Informatics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Board of Regents 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Boy Scouting Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Building Construction 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF BUISNESS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  184 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR of BUSINESS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF BUSINESS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business\t\\n\\n\\n\\n\\n\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business  Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business - Actuarial Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business - not complete 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business (BBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF BUSINESS (BBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business (Finance)#Post graduate Diploma#Bachelor of Businesses Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business \\n\\n\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business \\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Business \\nAdministration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Business \\nAdministration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Business & Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business & Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business A dministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Business Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Acquisition and Contract Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Adm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business Admi 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Admin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Admin (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Admin#BBA/A) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business Admin#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Business Administation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Business Administra 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Business AdministraHon 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 6162 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BachElor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR of business administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  148 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration    (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Administration   (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration  (B.B.A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Administration  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF BUSINESS ADMINISTRATION - MARKETING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of business administration ; 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business Administration (AACSB accredited) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration (B B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Administration (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   62 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF BUSINESS ADMINISTRATION (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business Administration (B.B.A.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Administration (B.B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Business Administration (B.B.A) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Business Administration (B.B.A) W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR OF BUSINESS ADMINISTRATION (B.B.A) W/ MAJORS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Business ADMINISTRATION (B.B.A)#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business Administration (B.B.A#Acossiates degree#Highschool Diploma#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Administration (B.B.A#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Administration (B.B.A#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Business Administration (B.B.A#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Business Administration (B.B.A#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Administration (B.B.A#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Business Administration (B.B.A#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business Administration (B.B.A#Bachelor of Business Administration (B.B.A#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business Administration (B.B.A#Bachelor of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration (B.B.A#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration (B.B.A#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business Administration (B.B.A#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business Administration (B.B.A#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business Administration (B.B.A#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Administration (B.B.A#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Administration (B.B.A#Idaho 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Administration (B.B.A#M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Administration (B.B.A#Standard Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration (B.S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Administration (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Administration (BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business Administration (BBA Hons)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration (BBA In management) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Business Administration (BBA or B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  300 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF BUSINESS ADMINISTRATION (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business Administration (BBA)\tGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Administration (BBA) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Administration (BBA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Business Administration (BBA) Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration (BBA)#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Administration (BBA)#Associate of Arts and Sciences (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration (BBA)#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration (BBA)#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Administration (BBA)#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Business Administration (BBA)#Bachelor of Business Administration (B.B.A#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Business Administration (BBA)#Bachelor of Science (BS)#Master of Business Administration (MBA)#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration (BBA)#Bachelor of Science#B.S#Associate of Arts (AA)#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Business Administration (BBA)#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business Administration (BBA)#BBA#Master Degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Business Administration (BBA)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration (BBA)#Diploma of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Administration (BBA)#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Business Administration (BBA)#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Business Administration (BBA)#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Administration (BBA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Administration (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration (BSBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business Administration (CIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR OF BUSINESS ADMINISTRATION (FINANCE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration (USAID scholarship) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration & Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business Administration & Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Administration & Commerce (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Administration & Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Business Administration &Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR OF BUSINESS ADMINISTRATION ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Administration Accounting & MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Business Administration and Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration and Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration and Bachelor of Law (BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Business Administration and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Business Administration and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business Administration and Management (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Business Administration and Operations Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business Administration and Specialized 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business Administration B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Administration Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Administration BBA Degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Business Administration concentrating 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF BUSINESS ADMINISTRATION CONCENTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   97 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF BUSINESS ADMINISTRATION DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Administration Degree (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Administration Degree#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Administration Degree#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business Administration Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Business Administration Degree#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Business Administration Degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration from A.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Administration Georgia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Administration Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Business Administration Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF BUSINESS ADMINISTRATION PROJECT MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF BUSINESS ADMINISTRATION WITH A CONCENTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF BUSINESS ADMINISTRATION WITH CONCENTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF BUSINESS ADMINISTRATION WITH HONORS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of business administration, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration, (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR OF BUSINESS ADMINISTRATION, (PENDING) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Administration, B. Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Administration, BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Administration, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business Administration, degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR OF BUSINESS ADMINISTRATION, MARKETING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF BUSINESS ADMINISTRATION:    ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration. (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Administration(BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Administration\\n(BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business Administration\\nAssociate of Science Degree (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration\\nBachelor of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business Administration\\nBBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Administration&nbsp 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business Administration#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Business Administration#A.S#A.S#Distinguished Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Administration#Advancement of Management (S.A.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Business Administration#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Business Administration#Associate Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Administration#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Administration#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Administration#Associate Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Administration#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Business Administration#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration#Associate of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration#Associate of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Business Administration#Associate of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Administration#Associate's Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Business Administration#Associate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Business Administration#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business Administration#Associates of Occupational Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration#Associates of Science degree#Bachelors of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business Administration#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Administration#B.E.S.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business Administration#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF BUSINESS ADMINISTRATION#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business Administration#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Administration#Bachelor Degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration#Bachelor of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF BUSINESS ADMINISTRATION#BACHELOR OF ART 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration#Bachelor of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF BUSINESS ADMINISTRATION#BACHELOR OF BUSINESS ADMINISTRATION#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business Administration#Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business Administration#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Administration#Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Business Administration#Bachelor of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Administration#Bachelor of Science#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Administration#Bachelor of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Administration#Bachelor of ScienceJanuary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Administration#Bachelor, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Administration#Bachelor's of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration#Bachelor#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration#Bachelor#French High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Administration#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Administration#BBA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration#BBA#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Administration#BBA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Administration#BBA#WASSCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business Administration#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Administration#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Administration#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration#Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Business Administration#CHARLES TOWN (WV) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration#CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Business Administration#Concentrating 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration#CPR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Administration#D.E.C#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Administration#Degree and Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Administration#Degree#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Administration#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Administration#Diploma        Graduate Centre of Applied Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Business Administration#Diploma of MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Administration#Diploma of Specialty 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Administration#Executive Graduate#Master of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business Administration#EXPERIENCE Sandra D. Daniels D.D.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business Administration#GFEBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Administration#Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Administration#Graduate#Graduate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Administration#HR Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration#I receive My degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF BUSINESS ADMINISTRATION#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Administration#Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Business Administration#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Business Administration#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration#Master's of Science#graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Administration#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business Administration#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business Administration#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Administration#MBA/MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration#MBA#Bachelor of Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration#MBM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Administration#MS#Beginning of Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business Administration#NY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Administration#Postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration#S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Administration#S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Administration#T. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Administration#TECHNOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Business AdministrationCumulative 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Business Administrationin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Administrations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF BUSINESS ADMINISTRATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Administration�Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business Administrative 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Business Adminisuradon 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF BUSINESS ADMINITRATION - BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business Adminsitration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Business Adminstration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF BUSINESS ADMINSTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Business Admiration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Admon 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business and Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Business and Administration (Banking and Finance) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business and Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Business and Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Business and French 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business and Hospitality Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business and Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Business and Marketing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business and Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business Arts#Bachelor of Business Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Business computing          Graduated#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF BUSINESS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business economics (H.E.A.O#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business English 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF BUSINESS GENERAL STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business Health Services Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business Health Services Administration (BHS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Information 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Information System (BBIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF BUSINESS INFORMATION SYSTEMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Interdisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Business Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Business management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  125 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF BUSINESS MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Management (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Business Management (BBM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Management (Hons)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business Management / Administration (Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Business Management & Administration#Advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business Management & Information Technology Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Management & Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF BUSINESS MANAGEMENT ACCOUNTING OPTION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Management and Bachelor of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF BUSINESS MANAGEMENT WITH CONCENTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Business Management#B.B.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business Management#Bachelor's degree#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business Management#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Business Management#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Management#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business marketing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Marketing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Office Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Business Operations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Business Organizational Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business Quality Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business Science Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Business Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF BUSINESS STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Business Studies (BBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of business studies(B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Business Studies(BBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of business studies\\n(B.B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Business Studies#B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Business Studies#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business The 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business-Management#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business, Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Business, International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business/Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business\\n      Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Business\\n     Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business\\n    Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Business\\nAdministration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Business\\nAdministration#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business\\nAdministration#Associate of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Business\\nAdministration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business\\nAdministration#Master of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR OF BUSINESS\\nINFORMATION\\nTECHNOLOGY(BBIT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Business#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Business#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of business#B.T.S#Associate \\n\\n\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Business#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Business#Bachelor of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Business#BBIT) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Business#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Business#M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Businesses Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Bussiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Cell 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Cell Biology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Chemical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Chemical and Life Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Chemical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR OF CHEMICAL ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Chemical Engineering (B.Ch.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor Of chemical science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Chemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Of Chemistry B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Chemistry#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Chemistry#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Child & Adolescent Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Chinese 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Chinese Literature 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Chinese literature#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Christian 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Christian Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Christian Ministry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Christian Ministry Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of City Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Civil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of civil  Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Civil Eng'g 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Civil Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Civil Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   70 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Civil Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Civil Engineering (BCE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Civil Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Civil Engineering, (BCE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Civil Engineering#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Civil Engineering#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Civil#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Classical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Clinical Laboratory Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Clinical Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Commence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  740 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of COMMERCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF COMMERCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Commerce\tManagement 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Commerce (B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Commerce (B-COM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Commerce (B. Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Commerce (B. Com Hons ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Commerce (B. Com) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Commerce (B. Com#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Commerce (B. Com#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Commerce (B. Comm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Commerce (B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF COMMERCE (B.COM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of commerce (B.com) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Commerce (B.com) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Commerce (B.Com) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Commerce (B.COM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Commerce (B.Com) (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Commerce (B.Com) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Commerce (B.Com#high school certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Commerce (B.Comm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Commerce (B.Comm) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Commerce (BCom) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Commerce (BCOM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Commerce (BCom) - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor Of Commerce (BCom), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Commerce (BCom): 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Commerce (Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Commerce (Degree)#12th#10th#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Commerce (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor Of Commerce (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR OF COMMERCE (HONORS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Commerce (Honors) - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Commerce (Honors), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Commerce (Honors): 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Commerce (Hons), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Commerce & Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Commerce & Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Commerce & Business administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Commerce & Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Commerce Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Commerce and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of commerce and business administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Commerce and Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of commerce degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Commerce degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Commerce Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Commerce Degree#Post-Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Commerce Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Commerce Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Of commerce, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Commerce(B. Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Commerce(B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Commerce(B.com) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Commerce(B.Com) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Commerce(B.Com)#V. ACCOMPLISHMENTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Commerce(Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Commerce/Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Commerce#B Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Commerce#B.Com (H) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Commerce#B.Com (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Commerce#B.Com / BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Commerce#B.COMM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Commerce#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Commerce#Bachelor Accounting degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Commerce#Bachelor of Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Commerce#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Commerce#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Commerce#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Commerce#Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Commerce#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Commerce#BComm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Commerce#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Commerce#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Commerce#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Commerce#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Commerce#Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Commerce#Hons.) ----Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Commerce#ICWAI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Commerce#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Commerce#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Commerce#Master of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF COMMERCE#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Commerce#Masters Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Commerce#Masters#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Commerce#Matriculated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Commerce#Post  Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Commerce#Post \\nGraduate Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Commerce#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Commerce#Post Graduate Diploma#Chartered Accountant 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Commerce#Pre University#B.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Commerce#Under Graduation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Commercial 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Commercial Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Commercial Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Commercial Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Commercial Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Communication (BC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Communication and Advertising 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Communication and Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Communication and the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Communication Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Communication Arts and Science Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Communication Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Communication Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Communication Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Communication Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Communication Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Communication Studies#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   45 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Of communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Communications          Graduation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Communications & Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Communications & Journalism#Master of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Communications and Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Communications Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Communications Federal 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Of communications QUALIFICATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Communications, Advertising 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Communications, B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Community Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Community Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Comparative Literature 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of computer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Computer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of COMPUTER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF COMPUTER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Computer  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Computer and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Computer and Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Computer and Information System 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Computer Application 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Computer Application (B.C.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Computer Application (BCA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Of Computer Application (BCA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Computer Application (BCA)#Bachelor of Commerce (B.Com#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Computer Applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   33 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Computer Applications (BCA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Computer Applications & Networking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Computer Data 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Computer Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Computer Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Computer engineering and IT#Academic degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Computer Engineering#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Computer Information 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR of Computer Information of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Computer Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Computer Information System 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Computer Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF COMPUTER INFORMATION SYSTEMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Computer Information's Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Computer Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Computer Networking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Computer Networks 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Computer Networks & Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Computer Programming 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Computer science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  351 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor Of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Computer Science (Applied IT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Of Computer Science (B.C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Computer Science (B.C.Sc) (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Computer Science (B.Sc, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Computer Science (BCS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Computer Science (BSCS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Computer Science (degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Computer Science \\n*Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Computer Science \\nBachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Computer Science \\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Computer Science & Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Computer Science & Engineering (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Computer Science and \\nEngineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Computer Science and Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF COMPUTER SCIENCE AND MATHEMATICS (B.SC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Computer Science and technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Computer Science and Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Computer Science ANTICIPATED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Computer Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Computer Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Computer Science Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Computer Science Equivalency Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Computer science Software Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Computer Science(B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Computer Science\\n    Bachelor of Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Computer Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Computer Science#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Computer Science#B.Sc. (Hon) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Computer Science#Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Computer Science#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Computer Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Computer Science#Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Computer Science#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Computer Science#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Computer Science#MCSE#Associate of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Computer Science#MS IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Computer Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Computer Sciences (Didn't Graduate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of computer sicence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Computer Software Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Computer System Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Computer Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Computer\\n    Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Computer\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Computing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Conference 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Construction Management Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Construction Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Corporate Secretaryship 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Counterterrorism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Criminal 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Criminal Investigation#Associate of Criminal Justice#Associate of Liberal Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Criminal Justice & Criminology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Criminal Justice and Criminology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Criminal Justice Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Criminal Justice Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Criminial Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Criminology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Culinary Arts & Pastry Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Cyber 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Cyber Forensics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Cyber Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Decision 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Decision Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF DEGREE HEALTH SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Dental 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Dental Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Dental Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Dental Sciences (BDS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Dental Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF DENTAL SURGERY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Dental Surgery (B.D.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Dental Surgery (B.D.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Of Dental Surgery (B.D.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Dental Surgery (BDS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of dental#Associates (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Dentistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Department of Cybernetics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Design#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Development Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Development Studies#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Dietetics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Digital 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Divinity and Biblical Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Earth and Mineral Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Earth Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Earth Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of economic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Economic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Economic & Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Economic Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Economic Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Economic&Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  373 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Economics (Honors degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Economics (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Economics and Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Economics and Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Economics and Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Economics and Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Economics and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Economics and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Economics and Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Economics and Statistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Economics B.sc#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Economics degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Economics Grad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Economics Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Economics of Enterprise 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Economics Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Economics, GRADUATED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Economics, Intl. Econ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Economics(dual Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Economics\\n\\nCentro de Estudios Lomas (CEL) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Economics#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Economics#Bachelor of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Economics#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Economics#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Economics#Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Economics#Bachelor of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Economics#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Economics#Diploma of Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Economics#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Economics#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of economy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Economy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  153 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BAchelor of EDUCATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR OF EDUCATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Education (Arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Education (ARTS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Education (B. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Education (B. Ed) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Education (B. Ed)#Bachelor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Education (B. Ed#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Education (B.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Education (B.Ed Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Education (B.Ed) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Education (B.ED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Education (BEd) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Education (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Education (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Education (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Education (Music) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Education (S.Pd 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Education (Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Education (Science) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Education & Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Education & Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Education & Bachelor of Science#SIGNT Exploitation Degree USAF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Education arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Education arts#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Education B.Ed (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Education degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Education Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Education Food and Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Education Humanities 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Education Primary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Education Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Education Science#Bed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Education Sciences#Bed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Education Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Education-Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Education, B.ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Education/Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Education#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Education#B.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Education#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Education#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Education#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Elective 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Elective Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Electric degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of electrical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Electrical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Electrical and Electronic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Electrical Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Electrical engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Electrical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  111 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF ELECTRICAL ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Electrical Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Electrical Engineering (BSEE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Electrical Engineering degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Electrical Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Electrical Engineering Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Electrical Engineering Technology#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Electrical Engineering#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Electrical Engineering#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Electronic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Electronic degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Electronic Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Electronic Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Electronic Equipment 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Electronic Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Electronics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Electronics (B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Electronics (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Electronics (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Electronics & communication Engineering (B.E.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Electronics & Telecommunication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Electronics and Telecommunication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Electronics and Telecommunication Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Electronics and Telecommunications Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Electronics Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Electronics Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Elementary Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Elementary Education College Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Elementary Education#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Emergency Medical Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Engg 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR OF ENGG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Of Engg#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Engineeriing\\nDegree#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              bachelor of engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 3241 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor Of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Engineering  \t\t     \tNetworking Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering  Biomedical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering  BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Engineering ( B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Engineering ( BS / BE ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Engineering (B. E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Engineering (B. Eng) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Engineering (B. Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   98 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Engineering (B.E- Mechanical Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Engineering (B.E. (CSE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of engineering (B.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Engineering (B.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   43 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Engineering (B.E#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Engineering (B.E#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Engineering (B.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Engineering (B.Eng.) and Master of Engineering (M.Eng#Bachelor of Engineering (B.Eng#Foundation degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Engineering (B.Eng#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Engineering (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering (BE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Engineering (BE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   61 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Engineering (BE) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Engineering (BE)#Bachelor of Engineering (BE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Engineering (BE)#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Engineering (BEng) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Engineering (BEng)#Bachelor of Engineering (BEng) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Engineering (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering (BS/BE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Engineering (BSEE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF ENGINEERING (BTECH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Engineering (Chemical) M S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering (Civil) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering (CIVIL) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Engineering (COMPUTER SCIENCE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Engineering (E&TC)#Dr. B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF ENGINEERING (ELECTRICAL) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Of Engineering (ELECTRONICS & COMMUNICATION) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Engineering (Four Year Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Engineering (Honors distinction) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Engineering (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Engineering (Honors) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Engineering (Honours Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Engineering (Honours) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Engineering (hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Engineering (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Engineering (production) with DISTINCTION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering & Management (B.Eng.Mgt 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Engineering & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Engineering & Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering and Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Engineering and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Engineering and Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Engineering Chemical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Engineering computer science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Engineering Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Engineering cum laude 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of engineering degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Engineering degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Engineering degree, B.A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Engineering Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Engineering Economic Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Engineering Elecronics and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Engineering Electrical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Engineering Electronic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Engineering Electronics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Engineering from M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Engineering from M.B.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Engineering Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Engineering Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering Madurai 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Engineering Mechanical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Engineering Mechanics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering NIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Engineering of Automation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Engineering Research 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Engineering Science (BES) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Engineering Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering Technology#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Engineering Technology#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering Thermal 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Engineering Visveswaraih 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Engineering, (B Eng) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Engineering, (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Engineering, (B.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Engineering, B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Engineering, CGPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Engineering, E&TC#Dr. B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Engineering, Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Engineering, first class 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Engineering. (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Engineering. (Mechanical) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering(B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Engineering(B.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering(BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering/Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Engineering\\n(B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering\\n(Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Engineering#A levels#O levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Engineering#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Engineering#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering#B.E.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Engineering#B.E(M.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of engineering#B.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Engineering#B.V.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Engineering#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Engineering#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Engineering#Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Engineering#Bachelor of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Engineering#Bachelor of\\nEngineering#XII 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Engineering#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Engineering#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Engineering#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering#Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor Of Engineering#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Engineering#Depart. of Computer Sci. & Tec 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Of Engineering#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Engineering#Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering#G.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Engineering#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Engineering#Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Engineering#Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Engineering#IEEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Engineering#Inter#Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Engineering#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Engineering#IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering#L.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering#M.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Engineering#Master of Biomedical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF ENGINEERING#MASTER OF COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Engineering#Master of Cyber Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Engineering#Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Engineering#Master of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of engineering#Master of Science and Techniques#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering#Master?s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Engineering#Master?s of Science#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF ENGINEERING#Master's Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Engineering#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Engineering#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Engineering#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Engineering#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Of Engineering#Post Graduate Diploma#MS, BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Engineering#Post-graduate diploma#DAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Engineering#Prof. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Engineering#S.D.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Engineering#S.R.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of EngineeringIndustrial 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Engineerlng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of English 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of English (Honor student) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of English and Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of English Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of English Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of English Language 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of English Literature 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Environmental 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Environmental Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Environmental Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Environmental Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Environmental Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Environmental Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Environmental Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Environmental Science#Bachelors (B.ENV) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Environmental Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Environmental Studies (Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Event Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Exercise Physiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Exercise Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Family 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Family Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Fashion and Clothing Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Fashion and Retail Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Film 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Film Production#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   57 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF FINANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Finance and Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Finance and Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Finance and Banking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of finance#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Financial Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Financial Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of fine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Fine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR OF FINE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Fine \\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Fine & Applied Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Fine and Applied Arts (B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   63 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Fine Art (B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Fine Art (BFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Fine Art and Art History (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Fine Art degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Fine Art Painting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Fine Art's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Fine Art\\n        (BFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Fine Art#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of fine arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Fine arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1174 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR OF FINE ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Fine Arts (BFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF FINE ARTS (BFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Fine Arts (BFA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Fine Arts (BFA)#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Fine Arts (BFA)#Bachelor of Fine Arts#B.F.A#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Fine Arts (BFA)#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Fine Arts and Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Fine Arts and Extended Media 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Fine Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   67 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF FINE ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Fine Arts Degree (BFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Fine Arts Degree, (BFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Fine Arts Degree#Masters of Teaching degree (VCU) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Fine Arts Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Fine Arts\\n          Graphic Design Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Fine Arts\\nAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Fine Arts\\nGraphic Design Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Fine Arts\\nMaster of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Fine Arts#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Fine Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Fine Arts#Associate's Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Fine Arts#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Fine Arts#B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Fine Arts#B.F.A.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Fine Arts#B.F.A.) Department of Fine \\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Fine Arts#B.F.A#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Fine Arts#B.F.A#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Fine Arts#B.F.A#International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Fine Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Fine Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Fine Arts#Bachelor of Arts#BA#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Fine Arts#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Fine Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Fine Arts#Bachelor of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Fine Arts#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Fine Arts#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Fine Arts#BFA#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Fine Arts#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Fine Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Fine Arts#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Fine Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Fine Arts#Master of Ceremonies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Fine Arts#Master of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Fine Arts#Masters of F 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Fine Arts#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Fine Arts#Masters\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Fine Arts#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Fine Arts#No Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Fine Arts#School of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Fine Artsdegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Fine\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Fire 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Fishery Science#BFSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Food 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Food Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Food Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Food Science and Industry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Food Science and Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Food Technology and Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Foreign 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Foreign Trade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Forensic Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Forest Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Forestry Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Forestry Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Forestry Resources 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Fragrance and Cosmetic Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of French Linguistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of French Literature 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF GAME ART 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Game Production 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF GENERAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of General Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of General Biology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of General Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of General Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of General Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF GENERAL SCIENCE Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of General Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  123 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF GENERAL STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of General Studies degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of General Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of General Studies#B.G.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of General Studies#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of General Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Geo Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Geographic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Geographic Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Geography 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Geology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Global 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Global Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Global Business and Public Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Government 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Government & International Politics (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Government and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Government and History 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Government and International Politics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Government and Politics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Graphic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Graphic Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Graphic Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Graphic Design & New Media 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Hamburgerology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Health Administration and Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Health Administration#Associate of Pre 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Health Administration#Master of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Health and Human Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Health and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Health Care Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Health Information Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF HEALTH INFORMATION MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Health Professions 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   48 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF HEALTH SCIENCE (HONORS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Health Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Health Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Health Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Health Service Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Health Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Health Services Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Health System Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Health Systems Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Healthcare 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of HealthCare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Healthcare Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Healthcare Business Admin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Healthcare Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Heath Administration#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of HES Amsterdam (Netherlands)#Baccalaureat 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of History 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of History\t\t\t\t\t     Charter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of History (BH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of History and Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of History Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of History#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of History#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Holistic Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Hom Medicine and Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Homeopathy Medicine and Surgery (B.H.M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Homoeopathic Medicine and Surgery (BHMS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Honors Course#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Hospital Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of hospitality 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Hospitality 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Hospitality and Hotel Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Hospitality Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Hospitality Management (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Hotel 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Hotel and Hospitality Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Hotel Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Hotel Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Hotel Management (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Human 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF HUMAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Human Biology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Human Environmental Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Human Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Human Resource Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Human Resources 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Human Resources Management#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Human Service Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Human Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Human Services Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Humanities 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Humanities and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Humanities and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Humanities and Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Hydrology#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of I 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of ICT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of IDS Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of in Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Independant Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Independent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Independent Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Individual Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Individual Studies (BIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Individualized 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Individualized Learning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Individualized Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Individualized Studies (BIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Individualized Studies (BIS)#Bachelor of Science (BS)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Individualized Studies (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Individualized Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Individualized Studies#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Individualized Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR OF INDIVIDUALIZED STUDY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Individualized Study (B.A.I.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Individualized Study (B.I.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Individualized Study (BIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Individualized Study degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Individualized Study Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Individualized Study#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Individualized Study#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Individualized Study#Associate of Science (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Individualized Study#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Individualized#AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Industrial 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Industrial and Organizational Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Industrial and Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Industrial Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR OF INDUSTRIAL DESIGN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Industrial Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Industrial Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Industrial Engineering#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Industrial Engineering#Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Industrial Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Industrial Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Industrials Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Infomation Systems BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF INFORMATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Information and Computing Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Information Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Information Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Information Media 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Information Science and Application 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Information System 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Information System Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Information System of Programming 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Information Systems and Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Information Systems Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Information Systems Operations Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Information Systems Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Information Systems#Associate of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Information Systems#TBD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Information Technologies (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Information Technologies and Graphics Training 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Information technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  104 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF INFORMATION TECHNOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Information Technology          OnGoing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Information Technology ( BIT )#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Information Technology (B. IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Information Technology (BIT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Information Technology (S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF INFORMATION TECHNOLOGY AND INFORMATICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Information Technology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Information Technology Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Information Technology Networking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Information Technology(B.Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Information Technology#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Information Technology#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Information Technology#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Information Technology#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Instrumentation Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Insurance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Integrated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Integrated Science and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Integrated Science and Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Integrated Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Integrative Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Intelligence Operations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Interdisciplinary Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Interdisciplinary Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Interdisciplinary Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Interdisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   54 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Interdisciplinary Studies (B.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Interdisciplinary Studies (BIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Interdisciplinary Studies degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Interdisciplinary Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Interdisciplinary Studies Degree#B.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Interdisciplinary Studies#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Interdisciplinary Studies#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Interdisciplinary Studies#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Interdisciplinary Studies#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Interior Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Interior Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Of Interior Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF INTERIOR DESIGN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Interior Design#Associate Bachelor of Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of international 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF INTERNATIONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of International Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of International Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF INTERNATIONAL BUSINESS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of International Business (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of International Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of International Business\\nBachelor of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of International Communications and Marketing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of International Economic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of International Economic and Trade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of International Economic Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of International Economic#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of International Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of International Economics and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of International Economy and Trade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of International Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of International Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of International Politics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of International Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of International Relations and Translation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of International Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of International Studies (BIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of International Tourism Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of International trade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of International Trade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of International Trade and Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of International#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of International#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Internet Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Investigative Forensics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Japanese 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Japanese Literature 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   49 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF JOURNALISM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Journalism (B.J 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Journalism (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Journalism (Print) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Journalism and Spanish 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Journalism and#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Journalism Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of journalism degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Journalism degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Journalism Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Journalism News 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Justice Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Kinesiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of La IP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Land Surveying 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Land Surveying and Mapping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Landscape 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Landscape Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF LANDSCAPE ARCHITECTURE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Landscape Architecture (BLA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of LandscapeArchitecture (BLA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Language Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Language Teaching 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Latvian Language 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  162 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF LAW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Law  (L.L.B. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Law - LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Law (Graduated and diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Law (L.L.B. degree)#CERTIFICATES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Law (L.L.B) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Law (L.LB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Law (License 3) (BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Law (LL. B) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Law (LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of law (LL.B) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Law (LL.B) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Law (LL.B) - (GBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Law (LL.B)#Bachelor of Law#LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of law (LL.B)#Bachelor of Science#B.SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Law (LL.B#U.S. Juris Doctor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Law (LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Law (LLB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Law (LLB)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Law (LLB)#Ontario (Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Law & Logic (LL.B) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Law &#61607 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Law and Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Law and Diplomacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Law and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of law degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Law degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Law Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF LAW DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Law degree#LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Law University of Buea (CAMEROON) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Law, LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Law. LL.B Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Law#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Law#Bachelor\\nof Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Law#Bachelor#Bachelor of Law#Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Law#Bachelors of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Law#LL.B#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF LAW#LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Law#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Law#Post graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  158 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR OF LAWS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Laws - LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Laws (Hons#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Laws (law degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Laws (Law Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Laws (LL,B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Laws (LL. B) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Laws (LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Laws (LL.B equivalence) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Laws (LL.B.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Laws (LL.B.), Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Laws (LL.B) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Laws (LL.B) (Law Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Laws (LL.B)#US Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Laws (LL.B/JD equivalence) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Laws (LL.B#J.D. equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Laws (LL.B#U.S. JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Laws (LL.B#U.S. Juries Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Laws (LL.B#U.S. Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Laws (LL.B#U.S. Juris Doctor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Laws (LL.B#US Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of laws (LLB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Laws (LLB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of LAWS (LLB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Laws (LLB)#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF LAWS (LLB)#J.D. EQUIVALENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Laws (LLB)#Juris Doctor (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Laws (LLB/JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Laws [LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Laws and Masters of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Laws Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Laws Degree#LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Laws LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Laws LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Laws LLB Degree (professional degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Laws National 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Laws November 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Laws Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Laws, (LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Laws, LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Laws, LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Laws,LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of laws. (LL.B) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Laws. LL.B (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Laws(LLB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Laws#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Laws#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Laws#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Laws#J.D equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Laws#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Laws#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Laws#LL.B#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Laws#Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Laws#Master of Laws (LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Laws#U.S. Juris Doctor\\n Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Laws#U.S. Juris Doctorate#J.D.degree)\\n*Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Legal 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Legal Science & Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Legal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Legal Studies (LL.B) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of liberal 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF LIBERAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Liberal Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of liberal arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  179 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor Of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF LIBERAL ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Liberal Arts\t\tDegree#Master of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Liberal Arts (A.L.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Liberal Arts & Science#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Liberal Arts & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Liberal Arts and Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Liberal Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Liberal Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Liberal Arts and Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Liberal Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Liberal Arts, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Liberal Arts\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Liberal Arts#Associate of Applied Science Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Liberal Arts#Associate of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Liberal Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Liberal Arts#Bachelor of Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Liberal Arts#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Liberal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   58 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF LIBERAL STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Liberal Studies (BLS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Liberal Studies and Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Liberal Studies degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Liberal Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Liberal Studies#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Liberal Studies#External Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Liberal\\n          Arts  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Library Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF LIBRARY SCIENCE. (BLS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Life Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Linguistic and Literature 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Literature 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Logistics Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  208 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Management & Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Management and Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Management and Organizational Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Management and Organizational Studies (BMOS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Management and Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Management Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Management Information System 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Management Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Management Information Systems (MIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Management of Human Resources 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Management Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Management Science (MBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Management Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Management Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Management Studies (BMS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Management, degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Management, E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Management#ACCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Management#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Management#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Management#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Managing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Marine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Marine Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Marine Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Marine Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of marketing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Marketing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Marketing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Marketing Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Marketing#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Mass Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Mass Communication (B.M.C) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Mass communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Mass Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Mass Communications graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Mass Media 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of MassCommunication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Master Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Material 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Material Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Material Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Material Science and Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Material Science and Engineering (MSE)#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Materials Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Materials Engineering & Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Materials Science & Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Math 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of MATHEMATHICS APPLICATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Mathematical Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Mathematics (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Mathematics and Applied Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Mathematics and Physics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Mathematics Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Mathematics Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Mechanical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF MECHANICAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Mechanical and Automation Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of mechanical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Mechanical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   79 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Mechanical Engineering (B. M. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Mechanical Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Mechanical Engineering (BME) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Mechanical Engineering (BME)#Professional Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Mechanical Engineering (BSME) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Mechanical Engineering degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Mechanical Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Mechanical Engineering.\\nS.T.B.S. College of Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Mechanical Engineering#Bachelor of Mechanical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Mechanical\\nEngineering (BME) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Media 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Media and Society 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Media Arts and Animation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Media Arts and Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Media Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Media Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Medical Laboratories Science (MLS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Medical Laboratory Science (BMLS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Medical Laboratory Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Medical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Medical Science (B. M.Sc)#Master of Public Health (MPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Medical Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF MEDICAL SCIENCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Medical Sciences#B. Med. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Medical Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Medicine (BM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Medicine (M.B.B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Medicine (MB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Medicine \\n*Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Medicine & Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Medicine & Bachelor of Surgery (M.B.B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Medicine & Bachelor of Surgery (M.B.B.S#US MD degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Medicine & Bachelor of Surgery (MBBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF MEDICINE & BACHELOR OF SURGERY (MBBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Medicine & Bachelor of Surgery \\n(M.B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Medicine & Bachelor of Surgery M.B., B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Medicine & Bachelor of Surgery(MBBS)#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Medicine & Bachelor of Surgery#Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Medicine & Bachelor of Surgery#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Medicine & Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Medicine & surgery (M.B.B.Ch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Medicine & Surgery (MBBCH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Medicine & Surgery (MBBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Medicine <BR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Medicine and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of medicine and Bachelor of surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Medicine and Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Medicine and Bachelor of Surgery (M.B;B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Medicine and Bachelor of surgery (M.B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Medicine and Bachelor of Surgery (M.B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Medicine and Bachelor of Surgery (M.B.B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Of Medicine and Bachelor Of Surgery (M.B.B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Medicine and Bachelor of Surgery (MBBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Medicine and Bachelor of Surgery (MBBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Medicine and Bachelor of Surgery Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Medicine and Bachelor of Surgery degree#Diploma#Otolaryngology degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Medicine and Bachelor of surgery MB.BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Medicine and Bachelor of surgery MBBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Medicine and Bachelor of Surgery, MBBS (medical school degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Medicine and Bachelor of Surgery(MBCHB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Medicine and Bachelor of Surgery#Nepal. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Medicine and General Surgery (BS / MBBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Medicine and Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Medicine and Surgery (Doctor of Medicine) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Medicine and Surgery (M. B. CH. B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Medicine and Surgery (M.B; B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Medicine and Surgery (M.B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of medicine and surgery (M.B.B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Medicine and Surgery (M.B.B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Medicine and Surgery (MB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Medicine and Surgery (MB. BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Medicine and Surgery (MBBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Medicine and Surgery (MBBS)\\nEquivalent of MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Medicine and Surgery (MBBS)#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Medicine and Surgery(MBBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Medicine and\\nBachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Medicine Bachelor of surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Medicine Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Medicine Bachelor of Surgery (MBBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Medicine, Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Medicine, Bachelor of Surgery (M.B.,B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Medicine, Bachelor of Surgery (M.B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Medicine, Bachelor of surgery (M.B.B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Medicine, Bachelor of Surgery (M.B.B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Medicine, Bachelor of Surgery (MBBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Medicine, Bachelor of Surgery (MBBS)#Bachelor of Medical Sciences#B. Med. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Medicine, Bachelor of Surgery (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Medicine, Bachelor of Surgery\\n(M.B.,B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Medicine, Bachelor of\\nSurgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Medicine, Biochemistry & Surgery (M.B.Ch.B)#Higher (Post graduate) Diploma#Higher (Postgraduate) Diploma#Higher(Post graduate) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Of Medicine; Bachelor Of Surgery, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Medicine. Al 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Medicine/ Bachelor of Surgery (MBBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Medicine#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Medicine#Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Medicine#Bachelor of Surgery (MB; BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Medicine#Bachelor of Surgery (MBBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Medicine#Bachelor of Surgery (MBCHB - Equivalent of MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Of Medicine#Bachelor Of Surgery(M.B.B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Medicine#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Medicine#Medical Doctor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Metaphysical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Metaphysical Science (B.Msc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Meteorology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Microbiology#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Middle East Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Middle Grades Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Mining Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Ministry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF MISSIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Multi 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Multi-Disciplinary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Multidisciplinary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Multidisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Multimedia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Multimedia#Master of Human Centered Computing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  308 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF MUSIC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Music and Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Music degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Music Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Music degree#Master of Music degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Music Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Music Education & Bachelor of Vocal Performance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Music Education and Applied Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Music Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Music Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Music#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Music#B.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Music#B.M. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Music#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Music#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Music#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Music#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Music#Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Music#D.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Music#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Music#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Music#Master of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Musical Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Natural Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Naturopathy and Yogic Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Naturopathy and Yogic Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Naturopathy Medicine and Yogic Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Network Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Network Security Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Networking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Neuroscience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Non 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Nuclear Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Nuclear Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Nuclear\\n     Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Nursing (BN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Nursing (BSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Nursing (P.B.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF NURSING DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Nursing Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Nursing, (BSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Nursing#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Nursing#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Nutrition and Dietetics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Nutrition Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Nutritional Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Occupational 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Occupational Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Oceanography Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Organization Supervision 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Organizational 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Organizational Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Oriental Languages 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Paralegal Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Parks 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Patent Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Pedagogy (Education) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Pharmaceutical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Pharmaceutical Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   84 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF PHARMACY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Pharmacy   <BR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Pharmacy (B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Pharmacy (B Pharm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Pharmacy (B-Pharm) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Pharmacy (B. Pharm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Pharmacy (B. Pharm) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Pharmacy (B.Pharm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Pharmacy (B.pharm) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Pharmacy and Biochemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Of Pharmacy and Health Professions 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of pharmacy degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Pharmacy degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Pharmacy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Pharmacy Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Pharmacy Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Pharmacy#Bachelor Degree#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Pharmacy#Bachelor of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Pharmacy#Master of Pharmaceutical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of pharmacy#school of pharmacy.\\n\\n\\n(Graduate#Bachelor of pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Philology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Philosophy (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Philosophy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of physical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Physical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Physical Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Physical Education and Sports 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Physical Oceanography Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Physical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Physical Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Physical Therapy (BPT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Physician Assistant 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Physics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Physics degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Physiotherapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Physiotherapy ( BPT )\\n    M.S#( 11th & 12th )#10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Physiotherapy (B.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Physiotherapy (B.P.T) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Physiotherapy#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Plastics Engineering Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Political 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of political science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   53 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Political Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Pre Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Print Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Print#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Processing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Processing and Control Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Production Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Professional 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Professional Aeronautics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Professional Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Professional Service 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Professional studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   84 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Professional Studies (B.P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Professional Studies (BPS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Professional Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Professional Studies#Associate of Occupational Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Professional Studies#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Project Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Psychological 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Psychological Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Psychological Sciences#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   48 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF PSYCHOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of psychology degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Psychology degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Psychology Eastern 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Psychology#Peru. \\n*Professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Public 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of PUBLIC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Public Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF PUBLIC ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Public Administration (BPA) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Public Administration (BPA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Public Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Public Affairs (BPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Public Affairs Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Public Affairs and Policy Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Public Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Public Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Public Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Public Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Public\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Radio 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Radiologic Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Real 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Recording Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Recreation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Registered Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Rehabilitation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Rehabilitation Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Religious Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Religious Education#Teacher's Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Religious Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of S cience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of S cience Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Sales Excellence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Sc. In 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF SCEINCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Schedule 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Scholar \t\t\t\t\tUMUC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of School Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of School of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Sci 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bachelor of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bachelor of SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  baChelor of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  169 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                85356 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor oF science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor oF Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  171 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BacheloR of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BAChELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR of SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2397 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science\t\t\t\t\t\tGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science\t\t\t\t     Associate in Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science\t\t\t\tG.B. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science\t\t\tBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science\t\t        High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science\t\tAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science\tAssociate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science \t\tMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science          Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science          BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science          Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science          Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science          MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF SCIENCE         PSYCHOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science        \\n    Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science     Degree Conferred 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science    (ex.) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR OF SCIENCE  COMPUTER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science - Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science !V 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science .................... 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science ( B. Sc. ( Chemistry )#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science ( B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science ( B.Sc ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR OF SCIENCE ( B.SC ) PHARMACY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science ( BS  degree)#MS  degree). 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science ( BS c) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science ( BS degree ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science ( BS degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science (B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science (B. Sc. Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science (B. Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   95 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF SCIENCE (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF SCIENCE (B.S. Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science (B.S.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science (B.S.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science (B.S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science (B.S.B.A#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of science (B.S.C) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science (B.S) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (B.S) Degree Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (B.S#Associate of Administration (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science (B.S#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science (B.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of science (B.S#ISOM)\\nassociate of science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science (B.S#Master of Science (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (B.sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   67 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF SCIENCE (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF SCIENCE (B.SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science (B.Sc Hons)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science (B.Sc. Engg 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science (B.Sc. honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science (B.Sc.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science (B.Sc.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (B.sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (B.SC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Of Science (B.sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science (B.Sc) (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science (B.Sc) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science (B.Sc)#Bachelor of Physiotherapy (BPT)#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science (B.Sc#Associate of Arts and Sciences (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science (B.Sc#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science (B.Sc#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science (B.Sc#GCE Advanced Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science (B.Sc#HS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science (B.Sc#Master of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science (B.Sc#Master of Science (M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (B.Sc#Ordinary National Diploma (OND) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science (B.Sc#Post Grad Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (BIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (BMGT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science (Bs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science (BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science (BS degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1216 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF SCIENCE (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science (BS) &ndash 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science (BS) and Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science (BS) Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF SCIENCE (BS) COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science (BS) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science (BS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF SCIENCE (BS) DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science (BS) degree#Master of Science (MS) degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR OF SCIENCE (BS) PHYSICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF SCIENCE (BS) PSYCHOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science (BS)#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science (BS)#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science (BS)#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science (BS)#Associate of Applied Science (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (BS)#Associate of Arts (A.A#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science (BS)#Associate of Arts (A.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science (BS)#Associate of Arts (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science (BS)#Associate of Arts and Sciences (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science (BS)#Associate of Science (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (BS)#Associate of Science Degree (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science (BS)#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science (BS)#Associate's degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science (BS)#Associate's degree#Maryland High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science (BS)#Associate#AAS#Associate#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science (BS)#Associated Degree#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science (BS)#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of science (BS)#Associates (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (BS)#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science (BS)#Associates in Applied  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science (BS)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science (BS)#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science (BS)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science (BS)#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science (BS)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science (BS)#Bachelor of Science (BS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science (BS)#Bachelor of Science (BS)#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science (BS)#Bachelor of Science (BS)#Bachelor of Science (BS)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science (BS)#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science (BS)#Bachelor Of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (BS)#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (BS)#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science (BS)#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (BS)#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science (BS)#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science (BS)#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (BS)#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science (BS)#Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (BS)#Diploma#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science (BS)#Diploma#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science (BS)#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science (BS)#M.S#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science (BS)#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science (BS)#Master of Engineering (MEng) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (BS)#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science (BS)#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science (BS)#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science (BS)#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science (BS)#Masters of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science (BS)#Masters of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science (BS)#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science (BS)#MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science (BS)#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science (BS)#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science (BS/BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (BSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (BSBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science (Bsc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science (BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF SCIENCE (BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science (BSc. Econ (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (Bsc.) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science (BSc.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science (BSc.), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of science (BSc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (BSc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (BSC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science (BSc) - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science (BSc) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science (BSc) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (BSc), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (BSc): 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF SCIENCE (BSCN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (BSCS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (BSE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (BSEE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science (BSEET) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (BSHS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (BSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Of Science (BSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science (BSN) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science (CS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science (degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science (Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science (Hon 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (Hon) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science (honor)#HVAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science (Honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   49 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science (HONORS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science (Honors)#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science (Honors)#U.S. bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science (Honours) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science (Hons.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (HONS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science (Hons) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science (Hons): 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science (Hons#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science (IT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science (Management). Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (MIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science (Organic chemistry) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science (Post graduate Honors Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science (present) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science (PSYCHOLOGY) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science (S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science (SB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science (Sc.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science (STATISTICS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science (Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science (unfinished) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science [BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science * * * * *Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science / (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science / Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science \\n\\n*B.Sc. Degree#Diploma\\n\\n*Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science \\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science \\nBachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR OF SCIENCE \\nCriminal Justice degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science \\nMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science & Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science & Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF SCIENCE & ASSOCIATE OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science & Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science & Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science & Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science &ndash 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF SCIENCE ACCOUNTING MAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF SCIENCE AND 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science and \\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science and Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science and Arts#Bachelor of Science and Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science and Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science and Bachelor of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science and Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science and Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science and Bachelor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science and Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science and Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science and Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science and Business Administration#College of\\nBusiness and Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science and Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science and Doctor of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science and Economics B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science and Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science and Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science and Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science and Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science and Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science and Professions 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science and Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of science and technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science and Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science applied Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science Associate in Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science Awarded  the  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of science B. S#B. S#Diploma#D.M.L.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science B.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science B.S#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science B.Sc (Accounting) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Bachelor of Human Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science Bachelor of Science#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science Bachelor Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Biological Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science Biology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science BS BA bachelor of arts Bachelor of Arts master of Science Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science BS degree#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science BS#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science BSN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF SCIENCE BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science Business Administration (BSBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF SCIENCE BUSINESS ADMINISTRATION (BSBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science Business Administration (BSBA) Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science Business Administration (BSC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Business of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science College of Business and   Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science Communication Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science completed (diploma US evaluated) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF SCIENCE COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science Computer Studies degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science Concurrent Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR OF SCIENCE COURSEWORK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF SCIENCE Criminology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science Culinary Nutrition Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science Cum laude 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Curriculum 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           bachelor of science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  569 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 4410 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BAchelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR of science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF SCIENCE degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  115 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science degree\tAccounting (GAAP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science degree\tAccounting (IFRS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF SCIENCE DEGREE  COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science Degree - Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science Degree (B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science degree (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science Degree (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science Degree (BSBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science Degree (BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF SCIENCE DEGREE (EQUIVALENT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science Degree (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science Degree (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science Degree \\n \\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science Degree \\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science Degree Achieved (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science Degree and MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science Degree BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science Degree Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF SCIENCE DEGREE BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science Degree Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science Degree Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science Degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science Degree PE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science Degree Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science Degree Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF SCIENCE DEGREE WITH A MAJOR#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science Degree. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science degree.\\nAAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science Degree's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science degree\\n\\nA.R#high school vocational 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science Degree\\nForensic Psychology    Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science Degree\\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science Degree#A.A.S#Of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Degree#A.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of science degree#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science Degree#Academy of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science Degree#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science Degree#Associate Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science Degree#Associate Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science Degree#Associate Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Degree#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science Degree#Associate of Applied Science Degree#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science Degree#Associate of Applied Science in (CNS)#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science Degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science Degree#Associate of Arts and Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science degree#Associate of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science Degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF SCIENCE DEGREE#ASSOCIATE OF ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science Degree#Associate of Arts Degree (RN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science Degree#Associate of Arts\\nDegree (RN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science Degree#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science degree#Associate of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science Degree#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF SCIENCE DEGREE#ASSOCIATE OF SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science Degree#Associate Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science Degree#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science Degree#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science degree#Associates degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science Degree#Associates in Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science Degree#Associates of Applied\\nScience Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science degree#Associates of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science Degree#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR OF SCIENCE DEGREE#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science Degree#B.S. BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Degree#B.S. Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science Degree#B.S.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF SCIENCE DEGREE#B.S#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science Degree#B.S#Bachelor of Science Degree#B.S#Associate of Science Degree#A.A#Associate of Science Degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science degree#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science Degree#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science degree#B.Sc. (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Degree#B's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science degree#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF SCIENCE DEGREE#BACHELOR OF SCIENCE  DEGREE#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science degree#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR OF SCIENCE DEGREE#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR OF SCIENCE DEGREE#BACHELOR OF SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science degree#Bachelor of Science degree (BSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science Degree#Bachelor of Science Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR OF SCIENCE DEGREE#Bachelor of Science Degree#BACHELOR OF\\nSCIENCE DEGREE#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science Degree#BACHELOR OF SCIENCE#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science degree#Bachelor's (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science Degree#Bachelor's diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science Degree#Bachelors Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science degree#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science Degree#BS-CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science Degree#BS#Diploma#Associates Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science degree#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science Degree#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science degree#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science Degree#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science Degree#Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science Degree#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Degree#Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science Degree#COMPLETED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science degree#CT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF SCIENCE DEGREE#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science Degree#Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science Degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF SCIENCE DEGREE#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science Degree#Diploma of Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science Degree#Diploma#Associate Degree#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF SCIENCE DEGREE#ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science Degree#Egypt (Degree#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science Degree#FORCE Associate#Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science degree#FSU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Of Science Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science Degree#Graduate#Master Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science degree#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science Degree#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science Degree#Higher National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science degree#IFSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science degree#International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science Degree#M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science Degree#M.S. Ed.S CAGS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science Degree#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science Degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science degree#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science degree#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science Degree#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science Degree#Master of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science degree#Master of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science Degree#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science degree#Master of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science Degree#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science Degree#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science Degree#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science Degree#Masters of Business Administration and Masters of Human Resources Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science degree#Masters of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science degree#Masters of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR of science degree#MINOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science Degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science Degree#National Certificate#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science degree#of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Degree#P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science Degree#P.A., Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science degree#Ph 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science Degree#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR OF SCIENCE DEGREE#TO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science degree#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science DegreeDept 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science Dl 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science E.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science EET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF SCIENCE ELECTRICAL ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science Engineering & Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science Engineering Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science Four Yr. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science general degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Health Administration (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science HNFE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science Honors Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science Honors(BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science Honours, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR OF SCIENCE I 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF SCIENCE INFORMATION & COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of science l 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR OF SCIENCE MANAGEMENT STUDIES  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science Nursing (Second degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science Nursing Degree  (BSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science Nursing Degree (BSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science of Accountancy (BSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science of Applied Physics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science of Biological Sciences (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science of Business Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science of Foreign Service 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science of Foreign Services (BSFS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science of Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science of Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science of Networking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of science of Psychology Bachelor's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR OF SCIENCE OF SOCIAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science of Technical Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF SCIENCE PROGRESS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science RN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science School of Media Arts and Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science Software Engineer YEARS ATTENDED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science Technology#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science Technology�Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science undergraduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science University Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF SCIENCE WITH HONORS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science �V 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science, (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science, (BS)#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science, (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF SCIENCE, ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science, Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science, Administration of Justice#Graduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF SCIENCE, BIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of science, biology\\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of science, Health Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science; BSC, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF SCIENCE: (BSC).  COMPUTER ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science???????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science???????????? ?????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science?????????????????????????????????????????????????????????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science??????????????????????#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science.  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science. Diploma#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science........................ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF SCIENCE(B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science(B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science(BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor Of Science(BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science(BSc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science/Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science\\n          Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science\\n         Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science\\n      (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science\\n(BS)#Masters of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science\\n*Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science\\n\\n\\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science\\nBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF SCIENCE\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF SCIENCE\\nDEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science\\nDuel degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science\\nMaster of Science\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science\\nMaster's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#10+2#10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#A. A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#A.A. Foundations of Business UOPX 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#A.A.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#A.A.S CYBERSECURITY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#A.A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#A.D.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#A+ Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#AA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#AACSB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#AAS#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#AAS#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Accelerated Second Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF SCIENCE#ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#ADN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Advanced Diploma/PGD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Advanced High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#AGD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#AINS#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#ALISON#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#AND 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#and gained Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#APICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Applied Design, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#AS T) Bachelors of Applied Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   76 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR OF SCIENCE#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Associate (MTA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Associate Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Associate Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Associate Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 bachelor of science#associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of science#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Of Science#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Associate Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Associate Degree#Diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Associate Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Associate degree#National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Associate Degree#TBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Associate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Associate of \\nArt 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Associate of Applied Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   43 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR OF SCIENCE#ASSOCIATE OF APPLIED SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Associate of Applied Science (AAS) Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Associate of Applied Science (AAS)#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Associate of Applied Science,&nbsp#Bachelor of&nbsp 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Associate of Applied Science#Associate of Science Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Associate of Applied Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Associate of Applied Science#Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Associate of Applied Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Associate of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Associate of Applied\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Associate of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Associate of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   53 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR OF SCIENCE#ASSOCIATE OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Associate of Arts & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Associate of Arts & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Associate of Arts and Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Associate of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Associate of Arts and Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Associate of Arts Curriculum 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Associate of Arts Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Associate of Arts Degree#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Associate of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Associate of Arts#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Associate of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Associate of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Associate of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Associate of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Associate of Business, \\nSmall 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   87 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF SCIENCE#ASSOCIATE OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Associate of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Associate of Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Associate of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Associate of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Associate of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Associate of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Associate of\\n    Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Associate of\\nApplied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Associate of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Associate s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Associate s Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Associate Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Associate's degree#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Associate's Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Associate's of Science#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Associate\\n          of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Associate\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Associate\\nof Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Associate\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Associate#AASN) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Associate#Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Of Science#Associate#Associate  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Associate#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Associate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Associate#CIS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Associate#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Associate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Associate#M.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Associate#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Associate#Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Associates Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Associates Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Associates Degree#High School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR OF SCIENCE#ASSOCIATES DEGREE#Montgomery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Associates Degree#NE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Associates Human Service of Applied Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Associates in Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Associates of Applied Science (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Associates of Art and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Associates of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Associates of Arts Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Associates of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Associates of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Associates of Nursing degree (RN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Associates of Occupational Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Associates of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Associates of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Associates of Science#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Associates of Science#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Associates of the Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Associates\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Associates\\nof Applied Science#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Associates#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Associates#Associates#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Associates#Coast Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF SCIENCE#ASSOICATE OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#ATTENDED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#B SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#B. S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF SCIENCE#B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#B.B.A#Associate of Fashion Merchandising, (A.A#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#B.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#B.M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  626 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF SCIENCE#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#B.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#B.S. HRM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#B.S. IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#B.S. MISY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#B.S.) & Bachelor of Arts (B. A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#B.S.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#B.S.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#B.S.) Degree#Associate of Applied Science (A.A.S.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#B.S.), degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#B.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF SCIENCE#B.S.A.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#B.S.A.S.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#B.S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#B.S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of science#B.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#B.S.c 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#B.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#B.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#B.S.E.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#B.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#B.S.I.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#B.S.J 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#B.S.L 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#B.S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#B.S.M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#B.S.M.E#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#B.S.M.I.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#B.S.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#B.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#B.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#B.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#B.S#Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#B.S#Associate of Arts (A.A#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#B.S#Associate of Arts and Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#B.S#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#B.S#Associate of Science (A.S#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#B.S#Associate of Science (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#B.S#Associate s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#B.S#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#B.S#Associate's degree#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#B.S#Bachelor in Arts (B.A#Associate of Arts and Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#B.S#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#B.S#Bachelor of Arts#BA#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#B.S#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#B.S#Bachelor of Science#B.S#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#B.S#Bachelor of Science#B.S#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#B.S#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#B.S#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#B.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#B.S#GIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#B.S#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#B.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#B.S#M.D., Ph.D#M.S#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#B.S#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#B.S#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#B.S#Master of Computer Applications (M.C.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#B.S#Master of Science (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#B.S#Master of Science (M.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#B.S#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#B.S#Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#B.S#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#B.S#Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#B.S#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#B.S#MBA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#B.S#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#B.S#Undergraduate#Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#B.SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#B.Sc \\n\\n\\n\\n\\n\\nNOTE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#B.Sc. CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#B.Sc. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#B.Sc. Honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#B.Sc. Mechanical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#B.Sc.) From M. G 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#B.Sc./Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#B.Sc) From M. G 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#B.Sc#Associate of Science, A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#BA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#BA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Baccalaureate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#baccalaureate#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Bachelor and Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF SCIENCE#BACHELOR DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Bachelor degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Bachelor degree's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Bachelor Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Bachelor of \\n          Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Bachelor of Aerospace Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Bachelor of Applied Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Bachelor of Art#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  216 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Of Science#Bachelor Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF SCIENCE#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Bachelor of Arts & Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Bachelor of Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Bachelor of Arts of Spanish 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Bachelor of Arts#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Bachelor of Arts#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Bachelor of Arts#Bachelor of Arts#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Bachelor of Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Bachelor of Arts#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Bachelor of Business Minor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Bachelor of Civil Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Bachelor of Consumer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Bachelor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Bachelor of Engineering Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Bachelor of Liberal Arts and Human Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Bachelor of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Bachelor of Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Bachelor of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Bachelor of Naval 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Bachelor of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Bachelor of Pharmacy degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#bachelor of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Bachelor of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  343 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR of SCIENCE#BACHELOR of SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF SCIENCE#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF SCIENCE#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Bachelor of Science (BS)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Bachelor of Science Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Bachelor of Science degree#CSAB#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Bachelor of Science degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF SCIENCE#BACHELOR OF SCIENCE.  COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Bachelor of Science#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of science#Bachelor of science#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Bachelor of Science#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF SCIENCE#BACHELOR OF SCIENCE#ASSOCIATE OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Bachelor of Science#Bachelor of Arts#Bachelor of Arts#Associate of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Bachelor of Science#Bachelor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Bachelor of Science#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Bachelor of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Bachelor of Science#high degree of technical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Bachelor of Science#high degree of technical competence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Bachelor of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Bachelor of Science#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Bachelor of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Bachelor of Science#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Bachelor of Science#Masters of Human Resources 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Bachelor of Science#Primary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Bachelor of Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Bachelor of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF SCIENCE#BACHELOR OF\\nSCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Bachelor of\\nTechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Bachelor's Degree project and Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Bachelor's degree#MOHAMEDTAHA#Higher Diploma#Postgraduate diploma#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Bachelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Bachelor\\nof\\n\\n\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Bachelor`s of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Bachelors and Post Graduate Level) and Advanced Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#BACHELORS OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Bachelors of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Bachelors of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Bachelors/Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#bachelor�s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#BBH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#BE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#BGS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Biological Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF SCIENCE#BIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#BME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Board of Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Bozeman 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#BR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  225 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF SCIENCE#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#BS & MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR OF SCIENCE#BS degree#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#BS FLCD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#BS Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#BS-CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#BS-HSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#BS-IFSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#BS-IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#BS-ME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#BS/BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#BS/MS#BS#MS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#BS#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#BS#Associate of Arts and Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#BS#Associate of Arts#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#BS#Associate of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#BS#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#BS#Associate of Science#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#BS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#BS#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#BS#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#BS#CO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#BS#Degree#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#BS#Doctor of Medicine#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#BS#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#BS#Master of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#BS#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#BS#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#BS#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#BSAE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#BSAE - Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#BSB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   89 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF SCIENCE#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#BSBA-E) Degree#BSBA#E Degree#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#BSBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#BSBA#E Degree#BSBA#E Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Bsc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF SCIENCE#BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#BSC] Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#BSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  115 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF SCIENCE#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#BSEE#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#BSEE#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#BSEE#Master of Business Administration (MBA)#Juris Doctor (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#BSEET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#BSIB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#BSIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#BSIS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#BSIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#BSIT) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#BSME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#BSMGMT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#BSN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#BSSEE#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#BSSEE#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#BSTM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Business Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#CHES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of science#CLASS OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#CLC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#CLEARANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#CMMIII 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF SCIENCE#CO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Completed Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Computer Network Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#CPE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#CUNY Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#CURRENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of SCIENCE#D. Pharm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#d'Entreprise#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   63 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF SCIENCE#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Degree of Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Degree#Associate#SHARP) Accelerated Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Degree#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Degree#Master of Science#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#degree#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR OF SCIENCE#Degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Degree#No#Masters#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#DEL (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Department 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#DIFS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  131 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF SCIENCE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF SCIENCE#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#diploma and AA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Diploma Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Diploma\\n\\nTranslator Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Diploma#Baccalaur�at 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Diploma#Bachelor of \\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Diploma#Bachelor of Arts#Baccalaureate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Diploma#Bachelor#Associates of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Diploma#Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Diploma#P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Diploma#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Diploma#Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Diplomate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          bachelor of science#DIPOLMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#DMS#DMS#DMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Doctor of Medicine (First Professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Doctor of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Doctor of Pharmacy (Incomplete) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Doctor of Philosophy (PhD)#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Doctorate of Business Administration#Master of Science#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#DOD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Doublemajor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Duel Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#E.A.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Earned degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR OF SCIENCE#ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Emphases 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Entrepreneurship\t\t\t\t\tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Entrepreneurship\t\t\t\tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Entrepreneurship Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Executive Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF SCIENCE#EXPECTED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Expected Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#EXPERIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#F.A.M.E) \\n\\nUsher of (F.A.M.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#F.Sc#Matric 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF SCIENCE#FACULTY OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Finishing Master's Degree#Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#FL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#focus Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Francisco de Vitoria Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Fundamentals of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Fundamentals of Safety and Health (FOSH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#GCE) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   68 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR OF SCIENCE#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Graduate with Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Graduate#Associate of Applied Science#Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Graduate#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Graduate#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Graduate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Of Science#Graduate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR OF SCIENCE#Graduate#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR OF SCIENCE#GRADUATED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Graduating 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#High School\t\t      Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#High School        Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   82 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF SCIENCE#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF SCIENCE#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#High School Diploma\t\tHigh School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#High School Diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#High School Diploma#High school certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#High School Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#High School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#High School/Secondary Diploma#High School Deploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#High\\nSchool Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Higher National Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#his Juris Doctorate degree#Master of Laws Degree#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#HONORS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Honors Degree#National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Honours Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#HP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#HR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#HRM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#HRMT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#HTML 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#I/O Psychology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#IB#International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#ICSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#IEEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#INSTITUTE A+ certification#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Intermediate#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#International Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#International General Certificate of Secondary Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#ISOM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#IT degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#IT Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#J 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#JSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Kinesiology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#L.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Lagos.\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Long Beach Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#M D G PA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#M S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#M. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#M.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#M.A#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Of Science#M.B.P.A. Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#M.D.R.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#M.D#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#M.E.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Major 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#MAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF SCIENCE#MAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR OF SCIENCE#MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Master of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Master of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Master of Accountancy#Master of Business Administration (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Master of Accounting and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Master of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Master of Architecture Catholic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Master of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Master of Arts of Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Master of business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF SCIENCE#MASTER OF BUSINESS ADMINISTRATION (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Master of Business Administration (MBA)#Bachelor of Science#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Master of Business Administration#Masters of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Master of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Master of Business Administration#Post Graduate\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Master of Business, International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Master of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Master of Business\\nAdministration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Master of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Master of Education#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Master of Engineering degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Master of Forensic Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Master of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Master of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Master of Library 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Master of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Master of Nursing Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Master of Professional Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Master of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Master of Public Health#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  101 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR of SCIENCE#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Master of Science (MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Master of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Master of Science Degree#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Master of Science Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Master of Science degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#master of Science degree#Master of Science   and Master of Sciencesdegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Master of Science in Engineering degree#M.S.E. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Master of Science\\nAssociate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Master of Science#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Master of Science#Bachelor of Science#Graduate#Associates of\\nScience#Graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Master of Science#BS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Master of Science#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Master of Science#M.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Master of Science#Master of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Master of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Master of Science#Master of Science#Doctor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR of Science#MASTER of Science#Master's Degree of Science#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Master of\\nComputer Applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Master of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Master of\\nScience degree#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF SCIENCE#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Master's Degree#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#master's degree#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Master's of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Master's Studies#Master of Science Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Master's#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Master's#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Master#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          bachelor of science#masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Masters Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Masters Degree of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#Masters of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Science#Masters of Business\\nAdministration) and Virginia Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Masters of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Masters of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Masters of Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Masters of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Masters of Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Masters of International Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Masters of Legal Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Masters of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Masters of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Masters of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Masters of Public Health Five 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Masters of Science Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Masters of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#Masters of\\nBusiness Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Masters of\\nDivinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Masters of\\nEducation Administration#Masters of Education\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Masters of\\nPublic Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Masters\\nof Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Masters#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Masters#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Master�s#Master�s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Matriculation#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#MAY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   37 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF SCIENCE#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#MBA and Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#MBA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#MBA#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#MBA#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#MBBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR OF SCIENCE#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Mechanical Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Member of Accounting and Business Association 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#MINOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR OF SCIENCE#MINOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#MMET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#MN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#MPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF SCIENCE#MSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#MSc#MBA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#MSCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#N.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#National Certificate#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Navy Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#NIIT - Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#NMAMIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#NOVA#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#NVCC#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#NYC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#OH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#P.G.Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#P.S. Diploma#P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#P>Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#P>Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Park Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#PGA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#PHR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#POST GRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Post-Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#PR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Primary Degree#Bachelor of Science#Primary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#PRTM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Science#Pursuing Masters of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#QUALIFICATIONS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#Registered Nurse Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Registered Nurse#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Science#Rio de Janeiro Brazil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#S.F 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#Sc.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Second Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Science#Secretarial Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#SECURITY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#SMAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Specializing#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF SCIENCE#SPRING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Science#Standard Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Science#StudiesBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Subjects of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#Sustainability, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#SY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Science#Teacher's Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Science#Technical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor Of Science#TECHNICAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Science#Technical High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Technician and high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#towards Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Science#Track#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#Type and Year of Degree#College Preparatory Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Science#U.S.D.A.-APHIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#UDC#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#UMUC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Science#UMUC MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Science#undergraduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Science#US B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#V.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Science#VAAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR OF SCIENCE#VATECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Science#Virginia Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of ScienceAugust 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of ScienceBachelor of ScienceBachelor of ScienceBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Sciencec 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of ScienceComputer Networking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of ScienceCyber Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of ScienceDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of ScienceGraduated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of scienceGraduated#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Sciencein 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Sciencein Biology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR OF SCIENCEINBUSINESSADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF SCIENCEINPROCESSWITH MAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of ScienceinPsychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of ScienceMajor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF SCIENCEMAY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of SciencePsychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  425 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF SCIENCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Sciences    \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Sciences '69 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Sciences (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Sciences (B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Sciences (B.S) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Sciences (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Sciences (B.Sc.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Sciences (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Sciences (BS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Sciences (BSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Sciences (BSS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Sciences (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Sciences / eCommerce Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Sciences and Humanities 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Sciences Biology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Sciences Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Sciences degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR OF SCIENCES DEGREE\\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Sciences Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Sciences Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Sciences Industrial 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Sciences Marketing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Sciences Mathematical Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Sciences Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Sciences Nutrition and Dietetic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Sciences Nutritional Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Sciences of Health Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF SCIENCES OF NURSING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Sciences of Social Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Sciences#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Sciences#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Sciences#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Sciences#Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Sciences#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Sciences#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Sciences#D.E.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Sciences#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Sciences#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Sciences#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Sciences#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Sciences#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of SciencesComputer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of SciencesMay 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of ScienceUniversity of Phoenix 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of ScienceZoologyGraduated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Sciene 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR OF SCIENE - MARKETING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Scienece 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR OF SCINCE#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Screenwriting and Business Ethics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Secondary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Secondary Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Secondary Education (BSED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Sience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Small 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Social 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Social & Legal Sciences (B.S.L 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF SOCIAL & POLITICAL SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Social and Cultural Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   77 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Social Science and Humanities 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Social Science BSS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Social Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Social Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Social Science#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Social Science#RN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Social Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Social Sciences (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Social Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  263 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF SOCIAL WORK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Social Work (BASW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Social Work (BSW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Social Work & Social Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Social Work Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR OF SOCIAL WORK DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Social Work Degree (BSW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Social Work High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Social Work.................... 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Social Work#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Social Work#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Social Work#B.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Social Work#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Social Work#BSW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Social Work#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Social Work#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Social Work#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Social Work#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Social Work#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Social Work#WV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Social#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Sociology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   34 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Sociology & Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Sociology and Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Sociology\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF SOFTWARE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Software engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Software Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Software Engineering#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Spanish 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Spanish Literature 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Spanish of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Spanish Philology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Special Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Specialized 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR OF SPECIALIZED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Specialized Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF SPECIALIZED STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Specialized Studies (BSS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Speech Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Sport Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Sports and Health Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Sports Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Sports Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Sports Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of State and Municipal Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Statistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Strategic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Strategic Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Studio Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Supply 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Surgery#Bachelor of Medicine (MB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Surveying and Bachelor of Civil\\nEngineering#Bachelor of Surveying degree#Bachelor of Surveying degree#Bachelor of Civil Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Surveying and Bachelor of Engineering#Bachelor of Surveying and\\nBachelor of Engineering (Civil) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of System Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Systems and Computer Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Systems Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Teacher Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of teaching 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Teaching#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR OF TECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Technical and Professional Services#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Technical and Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Technical Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Technical Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Techniques and Technologies#Higher Education#Diploma of Specialist 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Technological 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Technologies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1447 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR OF TECHNOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Technology  (B.Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Technology (B Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Technology (B. Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Technology (B. TECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Technology (B. Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Technology (B.S. Equivalent) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Technology (B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Technology (B.Tech ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Technology (B.Tech.) Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Technology (B.Tech.).Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Technology (B.Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Technology (B.TECH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF TECHNOLOGY (B.TECH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Technology (B.Tech)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Technology (B.Tech/BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Technology (B.Tech#A.A.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Technology (B.Tech#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Technology (B.Tech#diploma#Master of Technology (M.Tech#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Technology (B.Tech#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Technology (B.Tech#high school\\nDegree#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Technology (B.Tech#Master of Business Administration (MBA)#Bachelor of Technology (B.TECH#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Technology (B.Tech#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Technology (BIT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Technology (BTech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Technology (BTECH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Technology (BTech), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Technology (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Technology (Engineering) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Technology (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Technology (Honors), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Technology (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Technology (HONS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Technology [BTech] - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Technology & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Technology CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Technology degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Technology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor Of Technology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Technology degree (B.Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Technology Degree#Associate#Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Technology honours (Mech)\\nB-tech honours degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Technology Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Technology Mechanical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Technology Urban and Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Technology' with (honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Technology(B.Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Technology#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Technology#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Technology#Associates#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Technology#B-Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Technology#B. Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Technology#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Technology#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Technology#B.TECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of technology#B.Tech - CSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Technology#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Technology#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Technology#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Technology#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Technology#Master of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Technology#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Technology#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Technology#Masters of Science#Post Graduate Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Technology#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Technology#Treasurer of Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Technology#undergraduate) B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Technoloo 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Telecommunication Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Telecommunications Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Textiles and Consumer Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of the 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of the Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  276 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of The Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF THE ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of the Arts          High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of the Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of the Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of the Arts & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of the Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of the Arts and Sciences#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of the Arts cum laude 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of the arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of the Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of the Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of the Arts Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of the Arts, degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of the Arts: 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of the Arts#141 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of the Arts#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of the Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of the Arts#Bachelor of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of the Arts#Bachelor of the Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of the Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of the Faculty of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of the Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of the Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of the#Bachelor of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Theological Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Of Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR OF THEOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Theology / Master of Theology / Honorary Doctor of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Theology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OF THERMAL ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Tourism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Tourism & Hotels#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of Tourism and Hospitality 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Tourism and Hotel Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Tourism Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Town Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Trading Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Transit Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Translation Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Travel & Tourism Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of TV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of University Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of University Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Urban & Environmental Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of Urban & Environmental Planning#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of Urban and Environmental Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Urban and Environmental Planning#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Urban and Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of Urban And Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of Urban And Regional Planning#Masters of Civil Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of Urban Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of Urban Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Vet Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Veterinary Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of Veterinary Medicine (BVM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of Veterinary Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Veterinary Science and Animal Husbandry (B.V.Sc & A.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of Veterinary Science and Animal\\nHusbandry (BVSc & AH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of Veterinary Science#B.Sc. (Agr 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of Veterinary Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of Veterinary sciences & Animal 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of Visual 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of Visual and Performing Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of Wireless Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of World Economy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of-Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of, International#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of? Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of.Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of' Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of* *Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of\\n          Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of\\n          Business Administration (BBA)#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of\\n          Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of\\n          Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of\\n        Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of\\n     Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of\\n   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of\\n  Biblical Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of\\n  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of\\n  Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of\\n Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of\\n Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of\\n> Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of\\nAerospace Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of\\nArchitecture#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of\\nArchitecture#Bachelors of Arts#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of\\nArt 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   58 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR OF\\nARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of\\nArts (BA)#Master of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of\\nArts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of\\nArts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of\\nArts#Associate of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor of\\nArts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of\\nArts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of\\nArts#Honorable Mention Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of\\nArts#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of\\nArts#Undergraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of\\nBusiness 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of\\nBusiness Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of\\nBusiness Administration BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of\\nBusiness Administration#Associate of Arts Degree#Diploma#High School\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of\\nBusiness Administration#Associates#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of\\nBusiness Administration#BBA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of\\nBusiness\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of\\nComputer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of\\nComputer Science#International\\nBaccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of\\nDesign#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of\\nEducation (B.ED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of\\nEngineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of\\nEngineering(B.E#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of\\nGeneral Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of\\nHumanities and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of\\nLaw (LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor of\\nLaws (LL. B) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of\\nManagement 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of\\nPharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of\\nPharmacy?????????????????????????????????????????????????????????????????????????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of\\nPhilosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  113 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR OF\\nSCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of\\nScience (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of\\nscience degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of\\nScience degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor of\\nScience Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of\\nScience Degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of\\nScience Degree#Associated of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of\\nScience degree#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of\\nScience Degree#dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of\\nScience Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor of\\nScience degree#Masters Degree#AIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of\\nScience Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of\\nScience#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of\\nScience#ACCOMPLISHMENTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of\\nScience#Advanced Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of\\nScience#Associate Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of\\nScience#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of\\nScience#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of\\nScience#Associate of\\nApplied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of\\nScience#Associate of\\nArts#Associate of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of\\nScience#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of\\nScience#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of\\nScience#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of\\nScience#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of\\nScience#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of\\nScience#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor of\\nScience#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of\\nScience#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor of\\nScience#graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor of\\nScience#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor of\\nScience#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of\\nScience#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor of\\nScience#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor of\\nScience#QPA#Bachelor of Arts#QPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor of\\nSciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor of\\nTechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor of&nbsp 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor of&nbsp;Arts,&nbsp 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor of<br>\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor ofApplied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor ofArchitecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor ofArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHELOR OFARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor official Transcripts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor official Transcripts available 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor ofLAW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor ofScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor ofScience, Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor ofScience#N.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor ofScienceinMerchandising 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor ofTechnologyinElectronicsandCommunicationEngineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor on Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor on Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor or Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor or Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor or Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor or Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor or Engineering (B.E)#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor or IIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor or Medicine and Surgery (M.B., B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor or Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor or Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor or Science#BSTM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor oral communications (Broadcasting)          Masters of\\nEducation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor os Science Aerospace Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor ot Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Preferred#EDUCATIONB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Preferred#EducationBachelor of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Professional Aeronautical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Professional of Hospitality Management#Academy of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  120 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor s Degree \\n\\nB.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor s Degree B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor s Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor s Degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor s Degree#Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor s Degree#Associate of Arts and Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor s Degree#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor s Degree#Associate of Science (A.S#Associate of Science#Advanced High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor s Degree#Associate s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor s Degree#Associate s Degree#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor s Degree#Associate s Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor s Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor s Degree#B. Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor s Degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor s Degree#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor s Degree#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor s Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor s Degree#Bachelor's degree#Bachelor s Degree#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor s Degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor s Degree#Boulder MFT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor s Degree#D.E.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor s Degree#Degree#high school#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor s Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor s Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor s Degree#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor s Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor s Degree#Master of Science#Master s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor s Degree#Master s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor s Degree#Master s Degree#Post Graduate#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor s Degree#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor s of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor s of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor s of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor s of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor s#Associate s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  179 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor Science  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Science BS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Science Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor Science Degree#B.S.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor science Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor Science Nursing (BSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Science of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Science of Human Ecology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Science of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Science of Nursing (BSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Science#AST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Science#Bachelor Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Science#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor Science#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor Science#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor Science#Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor Science#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Sciences Nursing (BSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor Social Comunication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor Social Work Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor Studies#B.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor Technical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor Tourism and Hospitality 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor Translation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor university degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor University Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor University Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor Virginia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor-Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor-Master of technology, dual degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor-of-Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor, (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor, of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor, Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor; L.D#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor:\tB.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor: Law Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor!;s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor!of!Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor? of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor? of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor? of? Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor???s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor?s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor?s and Master?s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor?s And Master?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor?s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   67 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor?s Degree (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor?s Degree\\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor?s Degree#AA Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor?s Degree#Associate?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor?s Degree#Associates degree of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor?s degree#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor?s Degree#B.A#Intermediate#I.A#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor?s Degree#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor?s degree#HONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor?s Degree#PE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor?s degree#USA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor?s of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor?s of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor?s of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor?s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor?s of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor?s of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor?s of Science#Bachelor?s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor?s\\nDegree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor?s#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor?s#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor. Intended Diploma#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor.of.Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor' Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor' s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor''''''''s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor''''s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor''''s of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor''''s of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor''''s\\nDegree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor''''s#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor''''s#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor''''s#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor''s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor''s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor''s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor''s Degree#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor''s\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor''s\\nDegree#Higher Secondary Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor'\\ns of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor'of'Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2133 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELOR'S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   40 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's\tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's \tCollege 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's \tHealth \tServices CUNY \tDegree \tAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's          \\n     Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's          Acquisition Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's         Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's         Degree\\n        \\n \\n        \\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's         Degree\\n        \\n \\n        \\nBachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's         Textile\\n          Maryland          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's     Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's   Degree   (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's   Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's   of   Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR'S   OF   SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's  \\nBachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's  Degree of Botany 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's  Degree#Business Studies#B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's  of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR'S  OF APPLIED INFORMATION  TECHNOLOGY  - (#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's  of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's  of Science#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's  of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's - BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's - Musicology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's ; ; ;of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOR'S ; EXPECTED GRADUATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's (B. Sc) of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's (B. Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's (Pending) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's (Seeking/Desired) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's / College Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's / Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's \\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's \\nMAJOR#Bachelor of Medicine#Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's \\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's & Associates of Science#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's & Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's & Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's + Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bachelor's a degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's and Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's and master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's and Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's and Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's And Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR'S AND MASTER'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's and Master's degree#Certification of Director Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's and Master's Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's and Master's Degrees of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's and Master's\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's and Master's#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Anthropology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Arts & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's B.A. (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Biological Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's BS#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Business of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Business of Adminstration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Bussiness Administration Manassas VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's course 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degee 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degeree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  111 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1437 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 9286 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR's DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR'S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR'S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  178 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree\t\\n\tBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree\t\\n\\n\\n\\n\\n\\n\\n\\nBachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree\t\\n\\n\\n\\nBBA#Master's Degree\t\\n\\n\\n\\nMS/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree\t\\n\\n\\n\\nBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree\t\\n\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree\tBachelor of Professional Writing and Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR'S DEGREE\tYEAR GRADUATED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR'S DEGREE          BS#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree          SHRM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree   \\n Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree   \\nB. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree   \\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree   \\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree   \\nBachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree   \\nBachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree   \\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree   \\nBachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree   \\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree   \\nBachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree   \\nBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree   \\nLiberal Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree   \\nThe degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree  - E. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree  \\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree - (BSIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree - Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree - B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree - BEng (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree - BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree - BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree - E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree (B. Coml 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's degree (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree (B.A#Associates Degree (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR'S DEGREE (B.COM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's degree (B.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's degree (B.M.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's degree (B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree (B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's degree (B.Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree (BA,BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree (BA,BS)#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree (BA,BS)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree (BA)#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree (BA/BS)#MBA preferred.\tMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree (BGS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree (BIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree (BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR'S DEGREE (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree (BSBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree (BSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree (BUS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree (incomplete) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree (License) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             bachelor's Degree (LL.B) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR'S DEGREE (LL.B) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree (S1) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree [B.BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree \\n\tBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree \\n B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree \\n BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree \\n Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree \\n Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree \\n Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree \\n Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree \\n BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree \\n\\n\\n\\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree \\n\\n\\n\\nBachelor of ScienceFashion Merchandising 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree \\n\\nAdministration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree \\n\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree \\n\\nB.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree \\n\\nB.Mus.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree \\n\\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree \\n\\nB.S#Field of Concentration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree \\n\\nB.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree \\n\\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree \\n\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree \\n\\nBACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree \\n\\nBachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree \\n\\nBachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree \\n\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree \\n\\nBACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree \\n\\nBachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree \\n\\nBachelor of Science. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree \\n\\nBachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree \\n\\nBachelor's Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree \\n\\nBachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree \\n\\nBachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree \\n\\nBachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree \\n\\nBachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree \\n\\nBatchelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree \\n\\nBBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree \\n\\nBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree \\n\\nBS Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree \\n\\nBSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree \\n\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree \\n\\nDual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree \\n\\nEquivalent of Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree \\n\\nMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree \\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree \\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree \\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree \\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree \\nBachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree \\nBachelor Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree \\nBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree \\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree \\nReceived degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree <BR#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree Administration Of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's degree awarded) B.S BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree B.A#Associate Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's DEGREE B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's degree B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree BA\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree Bachelor of Science#Bachelor's Degree Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree Bachelors of \\n\\nScience Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree Batchelor of Science#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree BBA MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree Becholar of\\nscience#Bachelor's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree BS#AA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree BS#Associate Degree AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree BSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree BSID 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR'S DEGREE CANDIDATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree Cisco Network Associate (CCNA) B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree Commerce#Intermediate#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree Course Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's degree diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree for Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree G PA#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's degree IUP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree JULY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree MIS#Still need 40 credits for degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's degree of accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree of Aeronautical Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's degree of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR'S Degree of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree of Arts & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree of Arts and Sciences earned 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree of Arts#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree of Arts#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree of Arts#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's degree of Business Administration Management#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree of Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree of Business Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's degree of economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     bachelor's degree of engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's degree of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree of Engineering major 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree of Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree of Fine Art#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree of Integrated Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree of Integrated Studies (BIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree of Management Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree of Medicine#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         bachelor's degree of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's degree of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   80 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR'S DEGREE OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's degree of Science (BSN)#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's degree of science#associate's degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree of Science#Master\\nof Art#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree of Science#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree of Science#Student of Exercise Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree of Sciences, Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree of Survey and Topography 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's degree of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree of\\nScience#Associate's Degree\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR'S DEGREE PENDING, (HOSPITALITY) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree Second class upper 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree Started 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree Translation and Interpretation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             bachelor's degree within 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree � B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree-BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's degree, (BSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree, B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree, Baccalaureate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree: Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree: Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's degree. BA#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree. BS#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's degree.\\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree(s) of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree) BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree\\n\t\t\tBachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree\\n\t BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree\\n\tB. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree\\n\tB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree\\n\tB.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree\\n\tB.B.A#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree\\n\tB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree\\n\tB.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree\\n\tB.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree\\n\tB.S. PsychologyB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree\\n\tBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree\\n\tBachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree\\n\tBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree\\n\tBachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree\\n\tBachelor of Business AdministrationProcurement 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree\\n\tBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree\\n\tBACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree\\n\tBachelor Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree\\n\tBachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree\\n\tBachelor's of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree\\n\tBachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree\\n\tBachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree\\n\tBachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree\\n\tBachelors of Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree\\n\tBBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree\\n\tBFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree\\n\tBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree\\n\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree\\n          B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree\\n          B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree\\n   B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree\\n   BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree\\n   BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree\\n B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree\\n B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree\\n BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree\\n Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree\\n Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree\\n Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree\\n Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree\\n Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree\\n Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree\\n BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree\\n BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree\\n*Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree\\n*Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree\\n\\n\tB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree\\n\\n \\n\\n \\n\\n \\n\\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree\\n\\n\\n \\n\\nBachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree\\n\\n\\n\\n\\n\\n\\n \\n\\n\\n \\n\\nBachelor of Science. MAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree\\n\\n\\n\\nBachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree\\n\\n\\nA BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree\\n\\n\\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree\\n\\n\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree\\n\\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree\\n\\nBA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree\\n\\nBachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree\\n\\nBachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree\\n\\nBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree\\nAssociate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's degree\\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree\\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR'S DEGREE\\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree\\nB.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's degree\\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree\\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree\\nBachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree\\nBachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree\\nBachelor Of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree\\nBachelor of Professional Writing and Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree\\nBachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree\\nBachelor of Science#Bachelor's Degree Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree\\nBachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree\\nBachelor's of Arts & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree\\nBachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree\\nBachelor's of Veterinary Science (BSVS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree\\nBachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree\\nBachelors Degree#Master's Degree#Master's Degree#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree\\nBachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree\\nBachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree\\nBachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree\\nBatchelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree\\nBFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree\\nBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree\\nBS Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree\\nBuisness Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree\\nWill Graduate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#20008 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR'S DEGREE#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's degree#A.A.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's degree#A.O.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#AB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's degree#ACCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#ACCOUNTING DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's degree#ADVANCED DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's degree#Advanced Diploma#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#Advanced Diploma#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's degree#Advanced High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree#Advanced Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#AFB Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's degree#Americam Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's degree#AS. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#ASSOC degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#Associate Arts, Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's degree#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   69 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   bachelor's degree#Associate Degree \\n\\nAssociate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#Associate Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#Associate Degree#Associate Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#Associate Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#Associate Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#Associate Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#Associate Degree#High School\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree#Associate Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#Associate Degree#None 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree#Associate in Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's degree#Associate of Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#Associate of Applied Science Degree#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's degree#Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's degree#Associate of Arts (A.A#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#Associate of Arts and Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's degree#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#Associate of Science    Community 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's degree#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#Associate of Science (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's degree#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree#Associate of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's degree#Associate of Science#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#Associate of Social Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's degree#Associate s Degree#Associate s Degree#Associate s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's degree#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's degree#Associate's degree (ENG.AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's degree#Associate's degree#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#Associate's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's degree#Associate's degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#Associate's Degree#BUSINESS TECHNOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#Associate's Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#Associated of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree#Associates Cert 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bachelor's degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's degree#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#Associates Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#Associates Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#Associates of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's degree#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#Associates' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR'S DEGREE#Associates\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR'S DEGREE#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#B.A   \\nDegree#Bachelor's Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#B.A., B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's degree#B.A#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's degree#B.A#B.A#M.Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree#B.B.A#Associate's Degree, A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#B.B.A#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's degree#B.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#B.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#B.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   44 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#B.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#B.S. and B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#B.S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#B.S.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#B.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#B.S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree#B.S#Education Degree#Master's Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#B.S#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's degree#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#B.Sc. CSIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree#B.Sc.) (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#B.Sc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's degree#B.Tech.IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#BA   \\nDegree#Bachelor's Degree#BA   \\nDegree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#BA Interdisciplinary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#BA#BA#Bachelor's Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree#BA#Master's Degree#MBA#Associate Degree#AAS#Master's Degree#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#Bachelor and Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree#Bachelor Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#Bachelor of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree#Bachelor of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's degree#Bachelor of Applied Science (B.A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#Bachelor of Art degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's degree#Bachelor of Arts (BA)#Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree#Bachelor of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#Bachelor of Arts in Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#Bachelor of Arts#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree#Bachelor of Arts#Diploma Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's degree#Bachelor of Business Administration (B.B.A#Highschool diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree#Bachelor of Business\\n          Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     bachelor's degree#Bachelor of Commerce#High school diploma and bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's degree#Bachelor of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's degree#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's degree#Bachelor of Fine Arts#B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree#Bachelor of General Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                bachelor's degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   50 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#Bachelor Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR'S DEGREE#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's degree#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#BACHELOR OF SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#Bachelor of Science Degree#Associate Degree#Associate Electronic Engineering Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree#Bachelor of Science#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's degree#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree#Bachelor of Science#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree#Bachelor of Science#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#Bachelor of\\nScience Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#Bachelor Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree#Bachelor' degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's degree#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#Bachelor's Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bachelor's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's degree#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   71 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR'S DEGREE#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#Bachelor's Degree Equivalent)\\n\\n\\n\\nS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's degree#Bachelor's Degree#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#Bachelor's Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's degree#Bachelor's degree#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#Bachelor's Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#Bachelor's Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's degree#Bachelor's degree#Bachelor of Engineering (B.E#Bachelor of Engineering (B.E#Bachelor of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#Bachelor's Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#Bachelor's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#Bachelor's Degree#Bachelor's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#Bachelor's Degree#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#Bachelor's Degree#CSC#Bachelor of Arts (B.A#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree#Bachelor's Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              bachelor's degree#Bachelor's degree#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#Bachelor's degree#Licenciate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#Bachelor's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#Bachelor's degree#Master's Degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#Bachelor's degree#Master's Degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#Bachelor's Degree#None 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#Bachelor's Degree#Paralegal Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's degree#Bachelor's degree#Post Graduate Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#Bachelor's Degree#Postgraduate Diploma of Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#Bachelor's of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#Bachelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree#Bachelor#Diploma#Post Graduation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree#bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's degree#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#Bachelors of Arts#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's degree#Bachelors of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#Bachelors of Commerce degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's degree#Bachelors of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree#Bachelors of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree#Bachelors of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#Bachelors of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#Bachelors\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#Bachelors#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#Bachelor�s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's degree#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#BBA (Bachelor of Business Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#BFA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#Bilingual International Baccalaureate Diploma#Military Preparation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#Broadcasting, Degree#Bachelor of Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#Broadcasting, Degree#Bachelor of Arts and\\n   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   56 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#BS & MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#BS/BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree#BS/MBA#BS is#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#BS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#BS#Bachelor?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#BS#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's degree#BS#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's degree#BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#BSME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#BSN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's degree#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#Business Studies#B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's degree#CCNP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#CMIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's degree#Comptia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree#Consejer�a de Educaci�n (Comunidad de Madrid) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#CSU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             bachelor's degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   65 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#degree#Associate Degree#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree#Degree#CEFAM#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree#Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#Degree#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#Dietetics\t \tDegree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's degree#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR'S DEGREE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#Diploma of Bachelor of Science Degree#Diploma of Graduating of Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#Diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree#Diploma#Career Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's degree#Diploma#Economist's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree#Diploma#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#DISTINCTION#Post-Graduate level Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#Doctorate#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#faculty of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's degree#Faculty of Business Administration\\nBachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#Faculty of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#Fairfax 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's degree#Focusing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's degree#Foundation degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#FSI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's degree#goal of obtaining Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's degree#Govt. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's degree#graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree#Graduate studies\t \tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree#Graduate#Diploma#Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#Graduate#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree#H. D#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's degree#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's degree#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's degree#High school\tRegina Pacis School\\nrpacis.edu.pe\tGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                bachelor's degree#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                bachelor's degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's degree#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's degree#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's degree#High School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree#High School Student (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#high school)\\nbaccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's degree#High school\\n          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's degree#High School\\nDegree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's degree#High School#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's degree#higher diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree#honors diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's degree#HS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#IB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#JULY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's degree#L.D#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree#LIFE Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's degree#M.B.A#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's degree#M.B.B. Ch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#M.B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#MANAGEMENT  Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's degree#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bachelor's degree#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree#Master of Business Administration (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#Master of Business Administration#HRM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's degree#Master of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's degree#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's degree#Master of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#Master,s Degree#Master of Science#Master of-science\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's degree#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    bachelor's degree#master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's degree#master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's degree#Master's DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   80 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Degree#Master's Degree MS and BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degree#Master's Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's degree#Master's degree#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's degree#Master's degree#Degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#Master's Degree#Doctorate of Divinity Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree#Master's Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Degree#Master's Degree#Master of Business AdministrationRelated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree#Master's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#Master's Degree#MBA#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Degree#Master's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree#Masters of Business Administration\t \tDegree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#Masters of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#Masters of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree#Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#MBA Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Degree#MBA Institute Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree#MBA#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOR'S DEGREE#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's Degree#Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#NCMA#Master's Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#NIIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#None 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#Nursing\t \tDegree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's degree#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree#Post graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's degree#Post Graduate#Acedemic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's degree#Post-graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#Professional 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Degree#Publicity Specialist Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#RN Nursing Diploma\t \tDegree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's Degree#Salisbury, M D Fine Arts#Associate of Arts Degree#M D#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Degree#Specialty degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degree#The Baccalaureate Diploma of High Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Degree#U. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Degree#Undergraduate   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#US 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree#US Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Degree#X 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's degree#XII 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degree<BR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degreea 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's DegreeBachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's DegreeFive Year Bachelor and Master Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Degrees Government 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degrees#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Degrees#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's Developmental 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Diploma#Master's Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Engineering          Jawaharlal 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Exchange 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's Game and Simulation Programming 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Health Care Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Health Services CUNY Degree Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's HealthCare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR'S IN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELOR'S IN ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's In Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR'S IN SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's in Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's in Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's in science of economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Interdepartmental Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's Interdisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's level Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR'S OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's of    \\n          Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's of  Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's of  Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of \\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's of Accounting (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's of Accounting#B. Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of Applied Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's of Applied computer science#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR'S OF APPLIED INFORMATION TECHNOLOGY#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR'S OF APPLIED SCIENCES DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's of Architecture Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's of Architecture Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   66 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR'S OF ART 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's of Art (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR'S OF ART (ENGLISH) \\nDIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's of Art and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Art degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Art Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's of art degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's of Art's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's of Art's Interdisplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Art#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   bachElor's of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  301 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's of ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELOR'S OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's of Arts\t         Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Arts & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR'S OF ARTS & SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's of Arts & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's of Arts BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            bachelor's of arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR'S OF ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Arts Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's of Arts. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of Arts\\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's of Arts#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's of Arts#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's of Arts#DC \\n\\n\\n\\nDegree#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Arts#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's of Arts#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's of Banking and Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   96 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's of Business Administration B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's of Business Adminstration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's of Business Admistration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's of Business of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's of Business\\nAdministration#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's of Business&Economics of Hotel and Tourism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's of Chemical Engineering#Master's#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's of Civil Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's of Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's of COMPUTER INFORMATION SYSTEMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's of Computer Science and Information 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Dental Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's of Early 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Education#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Electrical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELOR'S OF ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's of Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Fine Arts  Degree (continuing) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's of Fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's of General Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's of Health Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of Interdisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's of Interior Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's of Journalism degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Kinesiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's of Law & Society 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Law Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Laws (LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of Liberal arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's of Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's of Liberal Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's of Liberal Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR'S OF LIBERAL STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Linguistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's of Literary and Cultural Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's of Material 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Mechanical Engineering#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of Multidisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's of Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR'S OF SCIECNE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1186 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR'S OF Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR'S OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of Science\tChemistry Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's of Science     Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's of Science  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's of Science  degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's of Science (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's of Science (B.S.) degree#Master's degree and PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's of Science (CIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's of Science (RN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's of Science \\nBachelors of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's of Science and Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's of Science and Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Science B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Science Culinary Arts\t\t\t\t\t     Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         bachelor's of science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   44 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  153 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's Of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELOR'S OF SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR'S OF SCIENCE DEGREE (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's of Science Degree#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's of Science degree#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's of Science degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's of Science Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Science Degree#Associates Degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's of Science Degree#Associates' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Science Degree#Bachelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's of science degree#Highschool Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's of Science Degree#IT Related Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Science Degree#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Science degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of Science Degree#Master's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's of Science degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's of Science Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's of Science of Psychology degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's of Science/ISS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's of Science\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's of Science\\nDual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's of Science#A.A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's of Science#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's of Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Science#Associate of Applied Science (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           bachelor's of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's of Science#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Science#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's of Science#Associate's degree#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Science#Associate's of Applied Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Science#Associate's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's of Science#Associate's#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Science#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's of Science#Bachelor of Science#Master of Science#Master s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of Science#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Science#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's of Science#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's of Science#Bachelor's of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's of Science#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's of Science#BS. HED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's of Science#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Science#Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Science#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's Of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Science#Engineering, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR'S OF SCIENCE#FOCUS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's of Science#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's of Science#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Science#Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's of Science#Master's#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Science#Masters Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Science#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's of Science#Online Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR'S OF SCIENCE#REGISTERED NURSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's of Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's of Sciences, B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's of Sciences, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's of Sciene Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's of Scienec 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's of Social 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's of Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's of Social Work (BSW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's of Social Work Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's of Social Work#B.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's of Social Work#Master's of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's of Software Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of Technical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             bachelor's of techonolgy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's of the Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's of Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's of Urban and Environmental Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's of Visual Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of\\nArchitecture\\n� Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Physics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Program of Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's Religion 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's Science#Registered Nurse#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's Technician Specialist (BTS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's-Fine Arts#Master's of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's-Fine Arts#Masters of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's, B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's: 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's:\tBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's(B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's/Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's/College Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's/Master's Finance#Bachelor's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's\\n          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's\\n     Degree#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's\\n Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's\\nAssociate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's\\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's\\nBlue 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bachelor's\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   44 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's\\nDegree B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's\\nDegree B.S#Associate\\nDegree A.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's\\nDegree Bachelor of Science#Associate Degree Applied Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's\\nDegree Bachelor of Science#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's\\nDegree Bachelors of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's\\nDegree BS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's\\nDegree BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's\\nDegree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's\\nDegree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's\\nDegree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's\\nDegree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's\\nDegree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's\\nDegree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's\\nDegree#Master Degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's\\nHyles 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor's\\nof Interdisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's\\nUMUC#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's#ASSOCIAte 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's#Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's#Associate of Arts (A.A#Associate of Applied Science (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELOR'S#ASSOCIATE'S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's#Associates Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's#B.B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor's#B.D.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's#B.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACHELOR'S#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor's#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's#Bachelor Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's#Bachelor of Science#B.S#Master's#Master's#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor's#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's#Bachelor's  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's#Bachelor's and Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor's#Bachelor's#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's#Bachelor&rsquo;s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor's#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's#BCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's#BIT#Bachelor of Information Technology (BIT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's#Bsc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's#high school class 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELOR'S#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's#HS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor's#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's#LPN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor's#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bachelor's#master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor's#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's#Master's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's#Master's of Biomedical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's#Master#Master of Arts#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor's#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor's#Masters of Human Services Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor's#Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor's#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor's#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor's#post graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor's#Undergrad degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor'sDeegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor'sDegree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor'sin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor'sManagement, Bachelor's\\nDegreeDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor(BS/BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor(s) of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor(s) of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor(tm)s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor(tm)s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor(tm)s of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor(tm)s of Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor(tm)s of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor) and State Institute of Arts (Masters) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor*s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor/ Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor/License 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor/Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor/Master of Architectural Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor/Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor/Masters#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor\\'s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor\\'s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor\\'s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHELOR\\'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor\\'s Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor\\n          of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor\\n          of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor\\n         of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor\\n        of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor\\n     of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor\\n of\\n Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR\\n\\n\\nOF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor\\n\\nDiploma\\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor\\n\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor\\nCertifications\tMaster of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor\\nDegree#Associate Degree#Diploma#District of Columbia Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor\\nDegree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor\\ndegree#Master Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor\\nof Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor\\nof Arts (B.A. Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor\\nof Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor\\nof Arts Degree#Master of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor\\nof Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor\\nof Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor\\nof Arts#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor\\nof Arts#Master of Arts#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor\\nof Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor\\nof Business Administration degree#ARM (Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor\\nof Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor\\nof Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor\\nof Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor\\nof Fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor\\nof science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   41 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor\\nof Science (BS)#Associate of Science (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor\\nof Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor\\nof Science degree#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor\\nof Science Degree#School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor\\nof Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor\\nof Science#Associate of Electronic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor\\nof Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor\\nof Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor\\nof Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor\\nof Science#Bachelor of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor\\nof Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor\\nof Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor\\nof Science#PROFESSIONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor\\nof Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor\\nof\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor&#39;s of Arts Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor&#39;s of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor&apos;s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor&of&Arts,&Communications&&\\nExpected&Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor&rsquo 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor&rsquo;s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor&rsquo;s   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor&rsquo;s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor&rsquo;s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   62 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELOR&rsquo;S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor&rsquo;s Degree \\n  \\n Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor&rsquo;s Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor&rsquo;s Degree&mdash 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor&rsquo;s Degree#AS#Associate&rsquo;s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor&rsquo;s Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor&rsquo;s Degree#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor&rsquo;s degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor&rsquo;s Degree#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor&rsquo;s Degree#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor&rsquo;s of Business Administration#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor&rsquo;s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor#ACCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor#Advanced level#High School          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    bachelor#associate degree#deploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor#Associate diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor#Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor#Associate of Arts (A.A#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor#Associate Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor#Associate#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor#Associate#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor#Associate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor#Associates   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor#B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor#B BA#Diploma#Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor#B. C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor#B. Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor#B. Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor#B.A#Bachelor#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor#B.Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor#B.C.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor#B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor#B.E#I.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor#B.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor#B.L.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor#B.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor#B.S.\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor#B.S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor#B.S.S.) (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor#B.S#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor#B.Sc. IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor#Bachelor Applied Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor#Bachelor Degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor#Bachelor in Surgery (MBBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor#Bachelor of  Accounting  Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor#Bachelor of Accounting Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor#Bachelor of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor#Bachelor of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor#Bachelor of Engineering - ECE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor#Bachelor of Manufacturing Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor#Bachelor of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor#Bachelor of Science#B.S#Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor#Bachelor of Technology - IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor#Bachelor's and Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    bachelor#Bachelor's Degree of Management Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor#Bachelor's of Aviation Administration#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor#Bachelor(tm)s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor#Bachelor#Diploma#Diploma#LPN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor#Bachelor#M.B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor#Bachelors Degree#Bachelor's Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor#BBA Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor#BE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor#BS#Associate of Art#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor#BTech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor#Business Studies#BBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor#Chemistry). Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor#Daejeon, S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      bachelor#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor#Degree of Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor#Diploma#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor#Diploma#Technical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor#French High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor#Germany (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor#High school diploma#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor#High School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor#Higher Secondary Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR#INTERMEDIATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor#LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor#LL.B.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor#M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor#M.A#Post-Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      bachelor#master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor#Master of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor#Master of ICP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             bachelor#master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelor#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor#Master's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor#Masters\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor#Matriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor#MBA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor#MD \\n\\n\\n\\nDegree#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELOR#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor#P.G Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor#Post Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor#Postgraduate Diploma#Master?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor#QA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR#S OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor#Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor#Upper Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor#UT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor`s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor`s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor`s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor`s Degree#Associate`s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor`s Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor`s Degree#bachelor`s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor`s degree#Bachelor`s degree#Bachelor`s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor`s Degree#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelor`s Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor`s of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor`s of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor`s of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor`s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor`s of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor`s of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelor`s#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor<br />\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelor=C6s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor=s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bacheloras Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bacheloras of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BachelorAs of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BachelorBachelorBachelorBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelorette Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelorette Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelorette of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelorof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelorof Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelorof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELOROF SCIENCE#MASTER OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELOROFARTS . E NGLISH . M INORINMEDIASTUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   37 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 4487 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BAchelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHelORS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELORS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  146 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors          Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors        Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors        Security Administration#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors     Bachelor of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors     degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors   of   Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors   of   Business   Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors   of   Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors   of   Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors   of   Science   (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors   of   Science   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors   of   Science#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors   of   Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors   of   Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors   of   the   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors  Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors  degree Allied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors  Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors  of   Arts#Bachelor   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors  of  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors  of  Arts  &  Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors  of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors  of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors  of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors  of Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors  of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors  Projected 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors - BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors - BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors - Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors - G.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors - Telecommunication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors , Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors (B.A#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors (B.S.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors (B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors (B.sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors (B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors (B.Sc) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors (B.sc), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors (BLS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors (BS) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors (BS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors (BSc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors (Commerce) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors (Higher National Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors (Honours) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors (In process) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors (MEng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors (Pending) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors \\n*Degree#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors \\n\\n\\n\\nof \\n\\n\\n\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors \\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors \\nof Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors & Masters Degree\\nBachelor's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors & Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors & Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors Accounting#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors and Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors and Associates Degrees#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors and Master Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors and Master?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors and Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors and Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors and Master's Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors and Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors and Masters of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors and Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors and Masters#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors and partial master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors and Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors Arts#Associate of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors Bachelor Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors BS Bachelors BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors Busines Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   47 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Business Administration#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors Business Administration#Bachelors of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors Degee 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors Degre 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     bACHELORS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  251 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2578 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELORS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELORS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   44 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Degree\tB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Degree\tBFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors Degree    Grad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Degree (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors degree (B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Degree (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Degree (BGS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Degree (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors degree (BSC#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors degree (science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors Degree \\n          BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors Degree \\n  BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors Degree \\n\\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Degree \\n\\nB.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree \\n\\nB.Sc. Honours 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors Degree \\n\\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors Degree \\n\\nBaccalaureate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Degree \\n\\nBachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Degree \\n\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors Degree \\n\\nBachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Degree \\n\\nBachelor of Fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors Degree \\n\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors Degree \\n\\nBachelor Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Degree \\n\\nBachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Degree \\n\\nBachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors Degree \\n\\nBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Degree \\n\\nBSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors Degree \\n\\nName of Dates Year Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors Degree \\n\\nSc. B#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Degree \\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Degree \\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Degree \\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree \\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Degree \\nBachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Degree \\nBachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree \\nBachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors Degree \\nBachelors of chemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Degree \\nBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Degree \\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors Degree \\nMy degree is 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Degree B.S#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Degree BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors Degree Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree Bachelor Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Degree Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Degree Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors Degree Bachelors of Science#Associate Degree A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Degree BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Degree BS#Bachelors Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors Degree Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors Degree I 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Degree in A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Degree of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Degree of Christian Ministry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors Degree of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors Degree of Criminology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors Degree of Fine Art Photography 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors Degree of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors Degree of International Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors degree of medicine and\\nsurgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors Degree of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELORS DEGREE OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors Degree of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Degree of Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Degree of Science#Associate Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Degree of Science#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors Degree of Science<BR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors Degree of sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors Degree of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors degree of sports science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors degree of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors Degree of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Degree) * * * * [ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors Degree\\n          B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Degree\\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELORS DEGREE\\nBACHELORS DEGREE#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors Degree\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Degree#18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors Degree#A. S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors degree#A+ Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Degree#Associate Degree#AA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors Degree#Associate Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors Degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors Degree#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors degree#Associate of\\nApplied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Degree#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors degree#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors degree#Associates degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors Degree#Associates Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Degree#Associates Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors Degree#Associates Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Degree#Associates in Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Degree#Associates of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors degree#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Degree#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors degree#Associates of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Degree#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Degree#B.A (HONS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Degree#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Degree#B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors Degree#B.E), B.M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors degree#B.H.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Degree#B.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors Degree#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors Degree#B.S. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors Degree#B.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors Degree#B.SC. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Degree#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors Degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors Degree#Bachelor of Arts Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Degree#Bachelor of Religious Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Degree#BACHELOR OF SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELORS DEGREE#Bachelor of Science#MD#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors Degree#Bachelor?s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors Degree#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors Degree#Bachelor's of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors Degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors Degree#bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors Degree#Bachelors Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors degree#Bachelors Degree#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors Degree#Bachelors Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors Degree#Bachelors of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors Degree#Bachelors of Commercial 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors Degree#Bachelors of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors Degree#Bachelors of Science degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Degree#Bachelors#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Degree#BBA#Masters Degree, M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors Degree#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors Degree#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Degree#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree#BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Degree#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors Degree#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Degree#CompTia - A+ Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree#CS Degree#CS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Degree#DC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors Degree#Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors Degree#Diploma#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors Degree#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors degree#Diplomas 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Degree#F.A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors Degree#French Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Degree#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors Degree#Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree#LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors Degree#Master of Public Health Degree#Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors Degree#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors Degree#Master's Degree MBA & MSITS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors degree#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors degree#Masters Degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree#Masters Degree#Master of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors Degree#Masters Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree#Masters of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors Degree#Masters\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Degree#MBA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Degree#MBA#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Degree#Md 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Degree#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors Degree#MD#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Degree#NEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors Degree#Online Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors degree#Post graduate diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Degree#Post Graduate Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors Degree#Tech Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors in Administration of justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors in Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors in Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors in Arts (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors in Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors in Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors in Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors in Commerce (Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors in Cybersecurity (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors in Education B. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors in Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors In Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors in Engineering (B.Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors in Engineering: 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors in Fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors in Psychology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors in science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors in Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELORS IN SCIENCE (B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors in Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors in Science (BS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors in Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors in Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors in Science Degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors in Sciences (Honor's Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors in Sciences Applied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors in Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors level Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors Liberal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors Of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELORS OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of     Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of   Electrical  Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of  Art Degree#US BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of  Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of  Arts#Friendl 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of  Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of  Business  Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of  Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of  Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of  Commnicaions 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of  Engineering (BE/BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of  Engineering#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of  History 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of  Interdisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of  Liberal and Sciences Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of  Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of  Mechanical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of  Science  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of  Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of  Sciences#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of (B Com Pass) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of (expected graduation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of \\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of \\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of \\nScience degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of 3#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELORS OF ACCOUNTING & FINANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Administration Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Administration: Business & Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Administration#Bachelors of Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Administration#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Administrative Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Aeronautical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Agriculture & Forestry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Allied Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Allied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Apparel and Textile Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Applied Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Applied Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Applied Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Applied Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   87 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELORS OF APPLIED SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Applied Science (BAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors Of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Applied Science degree#Bachelors of Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Applied Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Applied Science#Dimensions of Professional Admissions 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Applied Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Applied Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Applied\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Architectural Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Architecture - M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Architecture (B.Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Architecture and Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Architecture and Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Architecture Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Architecture\\n(B.Arch) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Architecture#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Architecture#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Architecture#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  373 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Art\tBusiness Associates\tHumanities 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Art    Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Art  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Art (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Art (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Art & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Art & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Art & Visual Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Art and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Art and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Art Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Art Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Art degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Of Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Art Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Art degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Art History 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Art in Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Art Obtained 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Art Sociology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Art, (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Art, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Art: SOCIAL SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Art#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Art#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Art#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Art#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Art#Bachelors of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Art#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Art#CMTF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Art#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Art#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Art#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Art#Masters of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Art#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Art#Theology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 3379 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELORS OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Arts - B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Arts (A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Arts (B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Arts (B.A.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Arts (B.A.), Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Arts (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Arts (B.A) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Arts (B.A#intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               bachelors of arts (ba) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   48 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Arts (BA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Arts (BA)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Arts (Banking) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Arts (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Arts (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Arts & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Arts & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Arts & Sciences#High school#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Arts &Humanities 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Arts Administration of Justice#Masters of Education May 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Arts and Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Arts and Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Arts and Humanities 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Arts and Letters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Arts and Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Arts and Profession 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Arts and science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Arts and Sciences Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Arts and Sciences Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Arts and Sciences#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Arts and Sciences#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   45 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  220 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELORS OF ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Arts Degree (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Arts Degree (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Arts Degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Arts degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Arts Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Arts Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Arts Degree#Bachelors of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Arts Degree#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Arts Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Arts degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Arts Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Arts Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Arts Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Arts High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Arts of Intelligence Operations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Arts, B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELORS OF ARTS, POLITICAL SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Arts; Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Arts/Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELORS OF ARTS\\nCLASS OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Arts#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Arts#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Arts#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Arts#Associate of Applied Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Arts#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Arts#Associate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Arts#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Arts#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Arts#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Arts#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Arts#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Arts#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Arts#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Arts#BA#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Arts#BA#Bachelors of Arts#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Arts#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Arts#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Arts#Bachelors of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Arts#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Arts#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Arts#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Arts#Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Arts#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Arts#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Arts#Distinction Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Arts#HI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Arts#HIgh school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Arts#International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Arts#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Arts#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Arts#Master of Business Administration#Master of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Arts#Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Arts#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Arts#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Arts#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Arts#Masters of Art#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Arts#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Arts#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Arts#Performing Arts (Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELORS OF ARTS#POLTICAL SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Arts#U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Audio Production 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Banking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Behavior 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Behavior Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Behavioral Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Behavioral Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Biochemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Biological Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Biological Sciences & Chemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Biology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Biology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Biomedical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Biomedical Engineering#B.B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Broadcast Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Business          Campbell University 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Business  Administration (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Business (CIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Business \\n\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Business \\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Business & Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Business & Entertainment 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Business Admin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Business administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  952 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELORS OF BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Business Administration ( BBA ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Business Administration (B.B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Business Administration (BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BACHELORS OF BUSINESS ADMINISTRATION (FINANCE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Business Administration & Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Business Administration and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Business Administration BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Business Administration Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Business Administration degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Business Administration of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Business Administration, BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Business Administration, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Business Administration(BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Business Administration#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Business Administration#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Business Administration#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Business Administration#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Business Administration#Associates of Arts#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Business Administration#Associates of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Business Administration#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Business Administration#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Business Administration#Bachelor's Degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Business Administration#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Business Administration#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Business Administration#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Business Administration#Bachelors of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Business Administration#Bachelors of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Business Administration#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Business Administration#Bachelors of\\nCommerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Business Administration#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Business Administration#Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Business Administration#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Business Administration#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Business Administration#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Business Administrations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Business Adminstration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Business and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Business and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Business and Economics#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Business and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Business and Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Business Communications and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Business Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Business in Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Business Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Business Leadership         \\nHonors Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of business management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   49 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Business Management (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Business Management Administration (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Business Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Business Management#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Business Management#Bachelors of Marketing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Business Management#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Business Management#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Business Marketing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Business Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Business Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Business Studies#B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Business\\nAdministration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Business\\nAdministration#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Business\\nAdministration#Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Business#Business Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Businsess Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Chemical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Chemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Christian Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Civil engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Civil Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Civil Engineering\\n*Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Classical Studies#Bachelors of Religious Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   83 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of COMMERCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Commerce (B. Com) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Commerce (B.Com) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Commerce (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of commerce degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Commerce Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Commerce#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Commerce#BCom 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Commerce#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Commerce#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Commerce#Option) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Commercial Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Commercial Science#Associates Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Communication Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Communication Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Communications degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Communications Graduation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Comparative Mysticism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of computer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Computer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Computer Application 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Computer Applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Computer Applications#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Computer Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Computer Engineering (BCE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Computer Engineering (BE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Computer Hardware Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Computer Networks & Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of computer science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Computer science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   72 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Computer Science (BCS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Computer Science#Associate of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Computer Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Computer Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Computer Science#Bachelors of Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Computer Science#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Computer Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Computer Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Computer Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Computer Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Computing and Information System 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Criminal Justice Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Criminal Justice Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Criminal Justice Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Criminology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Culture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Cyber Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Cybersecurity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Decision and Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Dental Surgery (B.D.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Drama 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Early 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Economics Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Economics/Arts (Honours) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Education Cum Laude 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Education, To graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Education#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Elective Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Electrical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Electrical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Electrical Engineering (B.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Electrical Engineering#Masters of Engineering Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Electronic Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Electronic Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Electronics Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Elementary Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Elementary Education#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  214 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELORS OF ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Engineering - Software 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Engineering (BE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Engineering (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Engineering (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Engineering (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Engineering (IT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Engineering and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Engineering degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Engineering Electronics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Engineering in Engineering Degree#B.E.M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Engineering Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Engineering Sciencein 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Engineering Technology and Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Engineering(IT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Engineering\\nElectronics\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Engineering#B.A#M.S#Post Graduation diploma#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Engineering#B.E. degree#CME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Engineering#B.E.M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Engineering#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Engineering#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of English 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of English (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Environmental Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Environmental Management#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Environmental Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Exercise 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Family Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Fashion and Retail Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Fashion Retail Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Finance and Banking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Fine Art (BFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of fine arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  148 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Fine Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Fine Arts (BFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Fine Arts#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Fine Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Fine Arts#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Fine Arts#Masters of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Food Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Foreign Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Forensic Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of General Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of General Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Geographic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Global 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Global Affair 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Global Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Graphic Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Health Care Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Health Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Health Promotion 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Health Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Health Service Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Health Services Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Health#Bachelors of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Healthcare Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of History 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Homeland Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Homoeopathy Medicine and Surgery (BHMS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Hospitality Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Human Resource Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Human Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Humanities 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Humanities and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Independent Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Individual Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Individualized Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Individualized Studies degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Individualized Studies#Associates) A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Individualized Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Individualized#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of industrial 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Industrial 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Industrial Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Industrial Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Information 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Information & Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Information Science and Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Information System 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Information Systems Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Information Systems Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Information Technology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Information Technology Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Information Technology#Associates\\n Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Information Technology#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Integrated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Integrated Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Interdisciplinary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Interdisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Interdisciplinary Studies#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Interdisciplinary Studies#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Interdisciplinary Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Interior Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of International Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of International Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of International Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Internetworking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Internetworking Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Journalism & Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Journalism, (BJ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of LA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Landscape Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Landscape Architecture (BLA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Law (Honors Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Law (LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Law (LL.B) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of law (LLB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Law (LLB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Law & Society 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Law Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Law Honors Degree#LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Law\\n\\n\\nSchool of Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Law#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Laws LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Letters and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Liberal and Sciences Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Liberal Arts & Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Liberal Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Liberal Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Liberal Arts\\nBA Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Liberal Arts#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Liberal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Liberal Studies#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Life Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Management and Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Management and Business Administration. \\n*Published 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Management Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Management Science#Receiving Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Management Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Marketing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Marketing Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Marketing Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Mass 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Mass Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Mass Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Mass Media 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Math 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Mechanical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Medicine & Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Medicine and Bachelors of Surgery (M.B.B.S#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Medicine and Bachelors of Surgery (MBBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Medicine and Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Medicine Bachelor of Surgery (M.B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Medicine Bachelors of Surgery (MBBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Medicine Bachelors of Surgery, MBBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Medicine, Bachelors of Surgery (M.B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Ministry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Ministry Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Multidisciplinary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Multidisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Music Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Music#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Networking and Communications Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Nuclear 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Nursing (BSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Nursing June of w 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Nursing Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Nursing#Bachelors of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Organizational Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Organizational Management#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Paralegal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Parks 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Petroleum Engineering#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of pharmaceutical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Pharmaceutical Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of pharmacy (B.Pharm) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Pharmacy (B.Pharm) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Photography 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Physical Education and Sports 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Physical Sciences#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Physical Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Physics (B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Professional Studies (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Professional Studies (B.P.S) of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Professional Studies#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Professional Studies#Associates of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Professional Studies#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Professional Studies#TIPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors Of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Psychology     \\nMasters of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Psychology Honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Psychology, UMUC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Psychology#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Public Administration & Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Public and Urban Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Public Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Public Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Religion 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Religious Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Sces 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 bachelors of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                10578 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   46 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BachelorS of SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHELORS OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  202 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BACHELORS OF SCIENCE\t\t\t\t\t\t\t\tWASHINGTON D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Science          Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science    Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Science   Interdisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Science - B.SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science (Applied I.T. Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Science (B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Science (B.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science (B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELORS OF SCIENCE (B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Science (B.Sc.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Science (B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  134 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELORS of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELORS OF SCIENCE (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Science (BS) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Science (BS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science (BS) Joint Honor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Science (BS)#Associates of Arts (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Science (BS)#Associates of Arts (AA)#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science (BSc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science (BSC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Science (BSCS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Science (BSME) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science (BSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science (CIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Science (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science (IT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science [BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Science \\n(B Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science & Commerce & Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Science & Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Science Administration (BS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Science and Art (BSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Science and Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science and Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Science and Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Science and Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELORS OF SCIENCE B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science B.S#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BACHELORS OF SCIENCE BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   93 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  611 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors Of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELORS OF SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Science degree (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Science Degree (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors Of Science Degree \\n\\nFilm Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Science Degree diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Science Degree diploma#AA degree diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Science Degree of Technical Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Science Degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Science Degree#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Science Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Science Degree#Associates in Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Science degree#Associates of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Science Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Science Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science Degree#Bachelors of Arts#Associates of Science Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Science Degree#BS-MGT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Science Degree#BSB/A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Science Degree#CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science Degree#Cybersecurity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Science degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Science Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Science degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Science Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science Degree#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Science Degree#ITT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Science Degree#Master of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Science Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science Degree#Masters of Arts Degree#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science Degree#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Science degree#Masters of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Science Degree#Masters of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science Degree#Post graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science I/O 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHELORS OF SCIENCE INFORMATION SYSTEM SCIENCE#GRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Science Intrdisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Science of Applied Physics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Science of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Science of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Science of IT (B.Sc.IT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Science of Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Science Office Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Science UW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science, (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELORS OF SCIENCE, BSBA#SPRING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science?????????????????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science(B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science(BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Science/Education (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELORS OF SCIENCE\\n          DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science\\n*Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of science#A. A. UNIVERSITY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELORS OF SCIENCE#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Science#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Science#AA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#ACM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Science#Advance diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Science#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Science#Advanced Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#AS#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Science#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Science#Associate of (ISC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Science#Associate of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#Associate of Arts#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Science#Associate of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Science#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Science#Associate's of Science#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Science#Associate#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Science#Associate#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#Associated Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Science#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Science#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Science#Associates Degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Science#Associates of Applied Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Science#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Science#Associates of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Science#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Science#Associates of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science#Associates) A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science#B.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   77 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors Of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Science#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Science#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Science#B.S.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science#B.S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science#B.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science#B.S.F.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Science#B.S#Bachelors of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#B.S#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of science#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BACHELORS OF SCIENCE#BA �BACHELORS OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHELORS OF SCIENCE#BA#BACHELORS OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Science#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Science#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Science#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#bachelor's of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Science#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Science#Bachelors of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#Bachelors of Art\\nGraduate Project Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#Bachelors of Art\\nGraduate Project Management Degree#Masters Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Science#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science#Bachelors of Arts#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#Bachelors of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Science#Bachelors of Science Chemistry Studies degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Science#Bachelors of Science#BBH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Science#Bachelors of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Science#Bachelors of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Science#Bachelors of Science#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science#Bachelors of Science#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Science#bachelors' degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science#Bachelors#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science#BS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Science#BS degree#Associate#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#BS.BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science#BS/P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#BSB/M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science#BSBA#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Science#BSHS) CUM LAUDE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science#BSIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Science#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science#CMIS#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#Communications Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Science#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Science#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#DIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#Diploma of Excellence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Science#Diploma#Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#EGD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#F.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science#Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Science#graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Science#High School          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#high school and one 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of science#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Science#high school diploma#I.D.E.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Science#Line Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#LSAMP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Science#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Science#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Science#Master of Philosophy#Bachelors of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Science#Master of Public Health (MPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Science#Master of Science and Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Science#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Science#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Science#Master's Degree#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of science#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Science#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Science#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science#Masters Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Science#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Science#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science#Masters of Business Administration [MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#Masters of Business Administration#Doctor of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science#Masters of Business of\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Science#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science#Masters of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Science#Masters of ScienceMay 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Science#Masters#Bachelors of Administration#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science#Masters#Diploma#B.A.R.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of Science#Masters#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Science#MBA#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Science#MBA#Masters of Business and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science#MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Science#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Science#MD Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Science#MLT#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Science#NE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#Neuroscience Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELORS OF SCIENCE#OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Science#PGCC#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Science#PROFESSIONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#QPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Science#STEM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science#UMUC#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Science#VAAssociates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Science#WPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of ScienceComputer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of ScienceGame Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   62 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Sciences BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Sciences Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Sciences degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Sciences Degree#Masters of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Sciences Natural and Health Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Sciences Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Sciences: Meteorology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Sciences#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Sculpting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Since (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Social and Behavioral Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELORS OF SOCIAL SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of Social Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Social Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Social Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Social Sciences          degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Social Sciences and Public Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   74 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors Of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Social Work (BSW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Social Work Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of Social Work#B.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Social Work#Masters of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Sociology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Sociology & Anthropology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of sociology science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Sociology#Bachelors of Sociology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Specialized Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BACHELORS OF SPECIALIZED STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Sport Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Sports & Exercise Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Sports Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Strategic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Studio Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of System engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of Talmudic Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Tech/Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors of Technical Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Technical Management Degree#Bachelor of Applied Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Technical Management#Bachelor of Applied Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Technical Professional Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of Technical\\nManagement 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  132 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHELORS OF TECHNOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Technology (B-Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of Technology (B.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of Technology (B.Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of Technology(B.Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of Technology#UNIBRATEC#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Telecommunications Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Teology#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of the 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of the Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   37 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of the Arts#Bachelors of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of the Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors of Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Tourism and Events Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of University Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of Urban & Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Urban and Environmental Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Urban and Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of Urban Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of Visual Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of Wildlife Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors of*Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors of\\n    Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors of\\n   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors of\\n Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of\\nArt 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of\\nArts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors of\\nBusiness Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors of\\nCommunication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors of\\nComputer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors of\\nFine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors of\\nGeneral Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHELORS OF\\nSCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors of\\nScience (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of\\nScience Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of\\nScience#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors of\\nScience#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors of\\nSocial and Behavioral Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors ofArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors ofTechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors or Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors or Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors plus graduate#Bachelor of General Studies#B.G.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors Psychology#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELORS SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors Tech (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors to Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors to Masters#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors Undergraduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors x 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors-Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors-Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors, Administrations Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors, B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors, BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors, Economics (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors, Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors, Juris Doctor Degree#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors, Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors: Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors?s Degree\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors.\\n\\n\\n\\n\\nTRAINING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors' Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    bachelors' degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors' degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   57 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors' Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors' Degree of Business and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors' Degree#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors' degree#Associates' degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors' Degree#Bachelor of Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors' degree#Bachelor#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bachelors' degree#bachelors' degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors' in Science with Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors' of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors' of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors' of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors' of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors' of Computer Science#NVCC#Associates of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors' of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors' of Laws (LL.B#US Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors' of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors' of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors' of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors' of Science#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors' of Science#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors(BS) Diploma#Honors Diploma#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors(Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors) and Business Management (Bachelors)#Computer Science (Masters) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors* of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors/ Associates of Applied Science#Online Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors/Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors/Master is of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors/Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors/Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors/MBA#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors\\n(B.Sc#Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors\\n\\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors\\n\\nDegree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors\\nDegree B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors\\nDegree#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors\\nDegree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors\\nDegree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors\\nDegree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors\\nof Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BACHELORS\\nOF SCIENCE#ASSOCIATE OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors\\nof\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors#; Associate Degree - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors#Algeria.\\n\\nMasters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors#Associate#DEANS LIST#High School Diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors#Associates Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors#Associates Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors#Associates Degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors#Associates of Network System Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors#B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors#B. Arch). \\n\\nBachelors#B.E.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors#B.A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors#B.A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors#B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors#B.COM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors#B.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors#B.S. Degree#A.A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors#B.S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors#B.S#Associate of Science\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors#B.S#Associate#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors#B.S#D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors#B.Sc.Ch.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors#B.Soc.Sc.Econ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors#B.Tech) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors#B.Tech#B.Tech#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors#bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors#Bachelor Degree\\n\\nAssociates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors#Bachelor of technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors#Bachelor's Degree \\n\\nBachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors#Bachelor's#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors#bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors#Bachelors of Arts (BS/BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors#Bachelors' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors#Bachelors#URL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors#Batchelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors#BBA and Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors#BBA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors#BCOM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors#BE/BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelors#Business Studies#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors#Computer Operations Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors#Computer Science Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors#Diploma#Advanced Technical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors#F.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors#G.E.D. High School Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachelors#Graduate#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        bachelors#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors#High School Diploma Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors#Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelors#Higher Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors#JAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors#L.L.B#A level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors#M.D.#Bachelors of Arts G.N.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors#M.G 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors#M.S.A.\\nHigh School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors#Master of Ceremony (MC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors#Master of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelors#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachelors#master's degree#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors#Master's#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    bachelors#masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelors#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors#Masters Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelors#Masters of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bachelors#Masters of Science#Masters of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors#Masters. MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors#Masters\\n*Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachelors#Masters#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelors#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelors#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors#Planning and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelors#POST GRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelors#Univ. of MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelors#Virginia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelors` of Science \\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelors` of Science\\ndegree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelorsof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor�s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachelor�s (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor�s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachelor�s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   68 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHELOR�S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor�s degree BSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor�s Degree\\n\\n\\n\\n\\n\\nBachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachelor�s Degree#Bachelor�s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor�s Degree#Bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachelor�s Degree#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor�s of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor�s Of Business Administration(BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor�s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHELOR�S OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor�s of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bachelor�s of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachelor�s of Science#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachelor�s#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bachelor�s#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor�Ys Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bachelor��s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachelor��s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor��s of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachelor��s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bachelor��s of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bacheor of Science#Bachelor of Commerce (B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bacherlor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bacherlor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bacherlor of Science#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bacherlor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bacherlor's of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bacherlors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachhelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachleor of Media Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachleor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bachleor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachleors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bachler Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachler of Arts Degree#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachler of Education (Osmania university) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachler of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachler of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachler's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bachler's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachleros Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachlor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHLOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       bachlor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bachlor of Art#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachlor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bachlor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACHLOR OF ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachlor of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bachlor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachlor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bachlor's Degree#Advacned Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BACHLOR'S OF SCIENCE#ASSOCIATES OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BACHLORS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachlors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BACHLORS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bachlors of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bachlors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bachlors of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bachlors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHLORS OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BACHLOUR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bacholar of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHOLAR'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BACHOLARS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bacholars of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bacholer of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bacholer of Medicine#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bacholer of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bacholer's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bacholers of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bacholor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BACHOLOR'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BACHOLOR'S OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bacholors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bacholors Degree of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bacholors of Art's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bacholors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACHOLORS OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Backelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BACKGROUNDBachelor of Fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bacllcor of l'Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Baclor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BACS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BAE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BAFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BAFCS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BAH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bahelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BAHM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BAIN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BAKERCOLLEGE#Mastersof 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Baking and Pastry Arts Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Baking Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Baking Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bal 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BALS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BALS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BALTIMORE, MDBachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bangladesh, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bangladesh, Degree#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bangladesh, Degree#B.B.A#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Banking and Finance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Banking Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BAOSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Barber-Stylist Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Barbering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BArch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BARCH#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Barchelars Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Barchelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BARCHELOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Barchelor of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Barchelor of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Barchelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Barea High School Diploma#Highest Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Barker, S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BAS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BAS#Bachelor of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BAS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Baseline Associates degree#Bachelors Degree#UOP#Masters Degree#UOP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bashchelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BASIC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Basic Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Basic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Basic Electronics Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Basic High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Basics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Basics of Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Basics of Government Contracting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Batchelor  of  Applied Science (B.A.Sc.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Batchelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Batchelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Batchelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Batchelor of Arts (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Batchelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Batchelor of Arts#P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Batchelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Batchelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Batchelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Batchelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BATCHELOR OF SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Batchelor of Science Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Batchelor of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Batchelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Batchelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Batchelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BATCHELOR'S OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Batchelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Batchelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Batchelors Degree (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bathelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Baylor Graduate#MHA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bba 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2238 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BBA          \\nUndergraduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BBA - Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BBA - Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BBA - dual degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BBA (Associate Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BBA (Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       BBA (Bachelor of Business Administration)#Bachelor of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BBA (Bachelor of Business Administration)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BBA (Bachelor#DMSR#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BBA (Bachelors of Business Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BBA (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BBA (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BBA (HONS)#Intermediate (ICS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BBA & MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BBA Accountant 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BBA Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BBA ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BBA and AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BBA Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BBA Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BBA Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BBA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BBA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BBA Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BBA degree#AA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BBA degree#AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BBA Degree#Associates of Arts (AA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BBA Degree#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BBA Degree#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BBA Degree#International Baccalaureate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BBA distinguished graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BBA Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BBA Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BBA Management#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BBA MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BBA of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BBA of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BBA Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BBA-Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BBA, BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BBA, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BBA. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BBA) Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BBA) Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BBA/ Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BBA/BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BBA/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BBA\\nBachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BBA\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BBA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BBA#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BBA#AAS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BBA#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BBA#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BBA#Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BBA#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BBA#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BBA#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BBA#Associates#Bachelor\\'s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BBA#B.COM (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BBA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BBA#BA#High School Dip 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BBA#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BBA#Bachelor Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BBA#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BBA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BBA#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BBA#Bachelor Of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BBA#BACHELOR OF BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BBA#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BBA#Bachelor of Business Administration (CISS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BBA#Bachelor of Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BBA#Bachelor of Business Administration#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BBA#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BBA#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BBA#Bachelor/Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BBA#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BBA#Bachelors of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BBA#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BBA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BBA#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BBA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BBA#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BBA#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BBA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BBA#High School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BBA#IBUS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BBA#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BBA#Intl 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BBA#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BBA#M.Div 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BBA#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BBA#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BBA#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BBA#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BBA#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BBA#MBA#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BBA#MBA#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BBA#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BBA#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BBA#MS MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BBA#Professional 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BBachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BBIT#Bachelors' Of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BBM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BBS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BBS#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BCA Bachelor of Computer Applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BCA#Bachelor of Computer Applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BCom 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BCOM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BCom#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BCOM#BCOM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BComm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BCS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    BCS(Bechelor of Computer Sciences)\\nDegree#Bachelor's degree#ICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BCSN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  277 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BE (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BE (EEE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BE Degree#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BE, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BE/B Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BE#AA#AWARDING OF DEGREE BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BE#B.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BE#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BE#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BE#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BE#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BE#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BE#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BE#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BE#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BE#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BEA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BEACH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bechalor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bechalore degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BECHELOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bechelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bechelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bechelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Becholor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BEd 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bed IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              bed#bed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bed#M. A#PhD\\nBSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bed#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BEEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BEET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Began Graduate#Master of Science#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Began Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Began pursuit of BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Began Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Begin Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Beginning Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Beginning of Graduate#PhD#PhD#PhD#PhD#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Beginning PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Belford High School          Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Belgium 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Beltsville, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BEng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BEng (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BEng#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Benjamin D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bennett's D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BEP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Berkeley Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Best 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BETEC (Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Betriebswirt BA#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  623 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BFA & BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BFA Ceramics BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BFA Combined Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BFA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BFA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BFA of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BFA Printmaking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BFA/BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BFA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BFA#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BFA#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BFA#B.S/M.S#Higher National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BFA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BFA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BFA#Bachelor of Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BFA#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BFA#Bachelor of Fine Arts (BFA)#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BFA#Bachelors of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BFA#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BFA#BFA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BFA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BFA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BFA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BFA#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BFA#INTERNSHIPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BFA#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BFA#MFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BGS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BGS degree#AA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BHM#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BHS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Biblical Counseling Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BIEM#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BILINGUAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bilingual (Spanish) \\n*Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Bilingual Degree#Bilingual Degree#Master of Business Administration (M.B.A#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bilingual Diploma#International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bilingual International Baccalaureate (IB) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bilingual International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bilingual International Baccalaureate Diploma \\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bilingual Secretary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Billing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Billing Specialist Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BIO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Biochemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Biochemistry B.Sc. <BR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Biochemistry BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Biochemistry Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bioengineering (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BIOENGINEERING, BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Biological Engineering Degree (BS)#AS#AA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Biology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Biology (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Biology & Philosophy (B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Biology A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Biology BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Biology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Biology, Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BiologyBACHELOR'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Biomedical Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Biomedical science BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Biostatistics, Master of Science(M.S)#Bachelor of Science (B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Biotechnician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Biotechnology#Associates Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BIRTHDATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BIS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BIS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BIS Degree (CS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BIS Degree#Bachelor's of Individualized Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BIS#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BJCC#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BJMC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BLA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BLA. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bladensburg high school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bladensburg High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bladensburg Maryland Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bloomington#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BLS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BM degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BM#postgraduate#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BMC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BMC#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BMD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BMDS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BME degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BME#Bachelor's of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BMIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BMT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BMW#Diploma, Diploma#Diploma, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BNCOC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Board of Governor's Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Board of Governors A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Board of Governors A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Board of Governor�s Degree\\n\\n\\nAssociate Degree#CNET Degree#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Board of Regents Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Board of Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Boarding school - high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BOCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BOE diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bolivia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BOLIVIA\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BOMI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bookeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bookkeeper 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   73 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bookkeeping and Accounting Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bookkeeping Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bookkeeping Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bookkeeping Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bookkeeping Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bookkeeping#basic bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              bookkeeping#Bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bookkeeping#bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bookkeeping#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bookkeeping#Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bookkeeping#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      bookkeeping#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bookkeeping#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bookkeeping#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                bookkeeping#Intermediate#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bookkeeping#Master of Public Administration#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BOS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Boston BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Boston Masters Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BOSTON, MA#PURSUIT OF HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Boulder. B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bowie M.D High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bowie Maryland\t\t    \tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bowie Maryland Masters#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bowie MD#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bowie MD#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BOY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BR#Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Brandywine MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Brantley, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Brazil\\nDegree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Brevet de Technicien Superieur (BTS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Brookings S.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                24469 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS\tBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS \t\tAA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS   Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS  Degree#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS  SOCS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS - Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS - Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS - Bachelor of Science Degree#AA#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS - Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS - Bachelors of Science#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS - CIS / BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS - Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS (B.Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS (Bachelor of Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS (Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS (College of Business and Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS (Eng) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS (Engineering, Electrical) and MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS (Honors) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS (Honors)#MS#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS (hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS (Junior) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS (Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS (Management) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS / BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS /BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS /M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS /Psychology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS \\n          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS \\nDegree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS & BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS & BA degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS & MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS & Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS & MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS & MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS &ndash#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS and BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS and Licentiateship 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS and MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS and MS (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS and MS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS and MS#BS#associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS and MS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS Bachelor of Science's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS BIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS BUSINESS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS CANDIDATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS Chem. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS CIS#EET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS CMIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS Commerce#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS CPE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS currently 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bs Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  268 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  739 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS Degree Admin of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS degree Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS Degree C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS Degree Dietetic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS Degree#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS degree#AAS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS Degree#AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS degree#AS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS Degree#AS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS Degree#AS Degree#Bachelors#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS degree#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS degree#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS Degree#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS degree#Associates of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS Degree#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         BS degree#Bachelor of Science Degree#High School DIPOLMA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS degree#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS Degree#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS Degree#BS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS degree#BS#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS degree#certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS degree#Computer Electronics Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS Degree#d\tTransferring 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS Degree#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS Degree#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS Degree#Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS degree#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS Degree#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS degree#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS degree#Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS Degree#M.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS degree#master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS Degree#Master of Public Health#Degree of MPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS Degree#Masters of Computers Applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS Degree#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS Degree#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS Degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS degree#MS software engineering degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS degree#MS#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS Degree#Old 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS degree#OP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS Degree#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS Degree#PRC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS Degree#TESST#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS degree#UC#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS Degree#US BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS DMIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS ECONOMICS#BA ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS Ed.\\nEmerging Leader Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS EECS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS eq 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS HRM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS IE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS in CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS inAccountancy Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS INFORMATION SYSTEMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS MARKETING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS MATHEMATICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS ME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS of Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS of Accounting#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS of Applied Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS of Chemical engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS of Information Technology Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS of Laser and Optical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS of Management Science (DSS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS OF PHARDMACY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS of Therapeutic Recreation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS PHARMACY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS undergraduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS-Degree#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS-EET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS, (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS, Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS, Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS, BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS, Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS, Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS, CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS, CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS, Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS, G.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS, MA#MBA#M.Ed#MA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS, MBBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS, mechanical engineering degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS, MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS, MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS, MS#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS, MT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS, S.I 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS: CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS: SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS. (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS. Actuarial Sc. Mathematics  & BS. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS. Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS. AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS. Bachelor of Science#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS. Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS. Engineering Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS. MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS., MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS(Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS(IT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS) and Business Technology Administration (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS) and Mathematics (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS) Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS) BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS) Bachelor of Science#BBA) Bachelor of Business Admin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS) Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS) Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS), Japanese (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS).\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS)<BR#Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS*Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS/ACC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS/BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS/BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS/BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS/BA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS/BA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS/BA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS/BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS/BIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS/BM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS/CIS and BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS/COM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS/E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS/EET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS/FINANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS/IS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS/IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS/M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS/MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS/MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS/MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS/MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS/MS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS/MS#Bachelor/Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS/MS#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS/MS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS\\n\tBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS\\n degree#AS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS\\nn Graduated#Associate?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS&BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#12th#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#A.A.C.S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#A.A.C.S.B. Accredited 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS#A.A.S., Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS#A.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#A+ Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   62 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#AA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#AA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#AA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#AACSB Accredited) (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#AAS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS#AAS) Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#AAS#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#AAS#AAS#NVCC#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#ACCIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#Advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#Advanced Diploma#high school mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS#Applied Associates of Science Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#ARM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   50 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#AS#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#AS#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS#AS#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#ASOC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#ASSOCIATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#Associate Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#Associate of (ISC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#Associate of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#Associate of Science (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#Associate of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS#Associate of Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#Associate''''s Degree Equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS#Associates Engineering degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS#Associates of Applied Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#Associates of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#Associates#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  100 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS#BA \t   \\n \tAdditional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#BA#AA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#BA#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS#BA#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS#BA#MSN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS#BACCALAUREATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#Bachelor  of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#Bachelor Degree#SQL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#Bachelor of Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#Bachelor of Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   73 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS#Bachelor of Science Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#Bachelor of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#Bachelor of Science#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#Bachelor of Sciences#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS#Bachelor's Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#Bachelor's Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#Bachelor's\\n    Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#Bachelor's\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#Bachelor\\nScience degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS#Bachelor#ITIL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#Bachelors Degree I#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#Bachelors Degree#MD#Laural Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#Bachelors of Music#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS#Bachelors of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#Bachelors of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS#Bachelor�s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#BE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  158 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#BS EN#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#BS IS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#BS/MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#BS#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#BS#AABA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#BS#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#BS#AS#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#BS#AS#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#BS#Associate Degree#AAS#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#BS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#BS#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#BS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS#BS#MS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#BTEC#BTEC#BTEC#BTEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#Business Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#CAREER PROGRESSION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#CBNU, S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#COMPUTER SCIENCE & BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS#Concentrating 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#Continuity of Operations Planning (COOP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS#Credit Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#Cybersecurity Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#DC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#Dec 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS#Degree, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS#Degree\\n \\n\\nMasters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#degree#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   55 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#diploma#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS#Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#Diploma#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#Diploma#TESST#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS#Distinguished Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#DS#Associate of Law and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS#Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#EDC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#EMPHASIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#ETC of BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS#Executive MBA (EMBA)#POST GRADUATE#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#Faculty of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#Faculty of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#FE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS#GaTech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#GRAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#GRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS#Graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#Graduate Diploma#SECRET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS#Graduate Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS#Graduate#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS#H. S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#HDSE (Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#HI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS#High School          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#High School\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS#Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#IACCM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS#IB#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#IFSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#III 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS#Intermediate#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#International Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS#INTERNSHIPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#ISOM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS#IT. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#IT#B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#ITT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#M.D#Masters of\\nPublic Health (M.P.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#MA#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#MA#MS#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#Master of Arts#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#Master of Engineering (M.Eng#Master of Engineering (M.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#Master of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS#Master of Special 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS#master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS#Master's#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#Master#Master#Master#Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#Masters degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#Masters Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#Masters of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#Masters of Science#MSMIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#Masters of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#Masters#Masters#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#MAY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   67 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#MBA, and JD#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS#MBA#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#MBA#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS#MBA#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#MCSD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#MD#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS#MD#MD#MD#MD#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  102 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS#MS '76 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#MS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BS#MS Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS#MS, and PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS#MS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#MS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS#MS#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS#MS#Graduate#Graduate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS#MS#Hours of Economics Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#MS#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#MS#M S#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#MS#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#MS#Master of Science Graduate#MD#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#MS#Master of Science#MSIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS#MS#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#MS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#MS#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#MS#Semester Hours of Economics Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#NBTA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#NVCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#of Technical Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS#Outstanding 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#P.A#BA degree\\n*BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#PGCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#Ph.D#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS#PhD#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS#Photography Assosiated Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#PMP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BS#Policy, and Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#Post Graduate#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS#Postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BS#Power 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BS#PROFESSIONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#Received 90 Credits Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BS#REFERENCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#required. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#Research Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS#Second degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#SEED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS#SKILLS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#T. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BS#Teaching Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BS#Technical Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#TN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BS#TRAINING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BS#U.S. Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BS#UMUC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#UMUC#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BS#UMUC#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BS#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BS#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BS#VA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BS#Va. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BS#Vocational Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BSAST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSB/A (Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  431 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSBA Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSBA Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSBA Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSBA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BSBA Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSBA#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSBA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BSBA#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BSBA#Bachelor Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSBA#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BSBA#Bachelors of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSBA#Bachelor��s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSBA#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSBA#CNE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BSBA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BSBA#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BSBA#Matriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BSBA#UMUC#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSBM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSBM Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bsc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   75 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  546 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  198 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BSc    Chemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BsC   Chemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSC  Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BSc (Accounting) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BSC (ACCOUNTING) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSc (Ed) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSc (Hon) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BSc (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BSC (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BSc (Honors) Agriculture Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSc (Honors) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bsc (Honours) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BSc (Honours) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSc (Honours)#BSc (Honours) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSc (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bsc (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BsC (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSc (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSC (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSC (HONS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BSc (Hons) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bsc (Hons): 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSC Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSc Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BSc Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSc Chemical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BSc Chemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSc Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSC COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bsc Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSc degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSc Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   33 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSC degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSC Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BSC Degree#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BSc Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BSc Honours Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bsc Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSc Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BSc Hons Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bsc of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BSc of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bsc. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSc. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BSC.  PLANNING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSc. (Hon) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BSC. (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSc. (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSc. (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSC. (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BSc. and Master Sc.Civil Engineer Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSc. B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSc. Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSC. Banking and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bsc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSc. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSC. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BSc. Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BSc. Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bsc. Political Science (Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSC(Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSc(Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BSc#AA#Data Processing (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bsc#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BSc#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BSc#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSc#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSc#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSc#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSC#Bachelor of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSC#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BSc#Bachelor of Science#BA) Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BSc#Bachelor of Science#P.O.Box 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSC#Bachelor s Degree#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSC#Bachelor Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BSc#bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BSc#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSc#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BSc#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bsc#Bsc#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSc#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSc#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bsc#G.C.E Advanced Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSc#Greek Lyceum Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSc#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bsc#Hons) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSC#ITIL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSc#M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BSc#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSc#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSc#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSc#N.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSc#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BSc#postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BSc#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BSc#WASHINGTON 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BSCE. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bschelors of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSCI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BSCIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSCJ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BSCmpE Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSCN#BSCIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BSCpE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSCS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BSCS (expecting) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSCS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSCT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   65 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSE Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BSE#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSE#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BSE#Bachelors of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BSE#Bachelors of Software Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSE#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSEC Diploma (Higher Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSEd 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  339 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BSEE \\n\\nn Technical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSEE and ME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSEE degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BSEE Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSEE#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BSEE#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSEE#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSEE#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSEE#Bachelor of Electrical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSEE#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSEE#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSEE#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSEE#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSEE#M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BSEE#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSEE#Master's Degree#CDP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSEE#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               BSEE#MBA#Master of Engineering \\nBSEE#MBA#MIS) M.ENGR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSEE#MSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSEE#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BSEET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSELECTRICALENGINEERING , B SPHYSICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BSFCS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSFS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSHS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSID Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSIE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSIE#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BSILR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSIS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BSIT (Bachelor) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSIT (Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSIT Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSIT Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BSIT#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSIT#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BSITM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSJ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSLA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSM Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BSM#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSM#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSM#Business of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   37 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSME#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSME#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BSME#degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSME#MSME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BSMET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  124 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSN degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSN Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BSN Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BSN degree#Criminal Justice degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BSN Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSN#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BSN#Bachelor's Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSN#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BSN#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BSNES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSOE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSOE (Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSPhysics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSS (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BSS#Bachelor of Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BSTM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSW\tB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       BSW (Bachelors of Social Work) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BSW & BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSW degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BSW Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BSW graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BSW#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSW#Bachelor of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BSW#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BT#Technical Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BTEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BTEC Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BTEC Higher National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Btec National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BTEC National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BTEC National Diploma#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Btec. National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Btec#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Btech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BTech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BTECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   BTech#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BTS (University Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BTS#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BUE#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Build Reports.    Degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Buisness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bureau of Alcohol 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bus. Administration#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Busacco, D#Busacco, D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Busacco, D#Busacco, D. Role of Health Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Business\tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Business - Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Business (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Business /Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Business & Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Business AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Business AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Business Accounting Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Business Accreditation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Business Admin AAS#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Business Admin. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BUSINESS Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Business Administration  A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Business Administration ( A.S.) Associate of Science#B.B.A#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Business Administration (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Business Administration (Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Business Administration (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Business Administration (BA)\\nAssociate Degree Achieved (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Business Administration (BA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Business Administration (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Business Administration (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Business Administration & Management#MBA#BSBA#Business Administration and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Business Administration A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Business Administration and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Business Administration and Management#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          BUSINESS ADMINISTRATION AND MANAGEMENT#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Business Administration and Management#Associate's Degree (A.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Business Administration and Management#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Business Administration and Management#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                         Business Administration and Management#Bachelor of Science#C.D. Hylton High School Graduate#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Business Administration and Management#General Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Business Administration Applied Associates in Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Business Administration Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Business Administration B.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BUSINESS ADMINISTRATION BACHELOR OF SCIENE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Business Administration BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   65 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Business Administration Degree BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Business Administration Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Business Administration Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Business Administration Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Business Administration Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Business Administration Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Business Administration Graduate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Business Administration Teacher Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Business Administration- Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Business Administration, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Business Administration, Degree BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Business Administration, Degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Business Administration. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Business Administration#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Business Administration#M.B.A#Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Business Administrations (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Business Administrative (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Business Administrative Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Business Analyst 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Business Analyst Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Business and Administration Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Business and Finance degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Business and Technology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Business Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Business Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Business Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Business Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Business associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Business Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Business B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Business BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Business Computer Programming Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Business courses. High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   45 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Business Degree\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Business Degree#Abitur#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Business Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Business Degree#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Business Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Business Diploma#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Business Education Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Business Education Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Business English Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Business Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Business Graduate#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BUSINESS HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Business Leadership (BA) Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Business Management (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             BUSINESS MANAGEMENT (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BUSINESS MANAGEMENT (BS)#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Business Management Baccalaureate Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Business Management BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Business Management degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Business Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BUSINESS MANAGEMENT DEGREE#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Business Management Degree#Master's Degree#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Business Management Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Business Management Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Business of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           BUSINESS OF ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Business of Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Business of Art and Design Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Business of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Business of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Business of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Business of Science Degree#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Business of Science of Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BUSINESS OF SECURITY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Business Operation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Business Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Business Professionals of America 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Business Regency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Business Student B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     business studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Business studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   67 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     BUSINESS STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BUSINESS STUDIES B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         BUSINESS STUDIES B.A.\\nBUSINESS STUDIES B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Business Studies Courses 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Business Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Business Studies#10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Business Studies#AS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Business Studies#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Business Studies#Associate Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Business Studies#Associate of Canadian Bankers 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Business studies#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Business Studies#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Business Studies#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Business Studies#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           business studies#bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Business studies#business studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Business studies#Business studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Business Studies#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BUSINESS STUDIES#BUSINESS STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Business Studies#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BUSINESS STUDIES#GRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Business Studies#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Business studies#High school graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 business studies#high school/diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Business Studies#Info. Tech#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Business Studies#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Business Technology (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Business, Mgmt. & Enterprise Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Business\\nAdministration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 BUSN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bussiness Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BVM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         C     Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          C    Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  C A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 C. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  C.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        C.A.D#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              C.A.G.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         C.A.G.S#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        C.A.M.B.A#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              C.A.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            C.A.S.H.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          C.A.S#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        C.A.S#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          C.B.S.E board#matriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  C.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          C.D.A#Associate Renewal#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          C.D#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              C.D#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        C.D#States Diploma#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     C.E.D.A#District of Columbia High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              C.L.E.G 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                C.N.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              C.O.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                C.P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               C.S. Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                C.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         C#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CA (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CA.      A.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CA. A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CA. B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ca. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CA#Associates of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CACI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           CACREP#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CAD#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CADC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CAGS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CAMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Cambridge Advanced Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Cambridge Advanced Level Certificate#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cambridge International Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Cambridge Ordinary Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cambridge ordinary level#advanced level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Cameroon Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Cameroon. B.Sc, Biochemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CAMEROON.\\nB.SC. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CAMEROON#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CAMPUS Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Campus#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Canada 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Cand. PH.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CANDIDATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CANDIDATE FOR BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CANDIDATE FOR BACHELOR OF ARTS#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Candidate Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Candidate of Associates Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Candidate of Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Candidate of Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Candidate of Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Candidate of Masters Degree (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CANDIDATE OF MASTERS OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Candidate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Candidate, A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Cant. DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CAP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CAPACITY ACADEMY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CAPE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Capital Markets Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CAPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CAPM#Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CAPTAIN'S LOG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CAPTEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Cardiovascular Technology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Care Administration (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Career Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       CAREER DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Career Diploma#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CAREER PROGRESSION (CONT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Career T.E.A.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Carl D. Perkins JCC#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CARLOS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CAROLINA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Carolina Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Carolina Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Carolina Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CarolinaB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CATEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CBRN Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CCAF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CCAF) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CCBC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CCDC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CCJS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CCMA Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CCMA#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CCNA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       CCNA#AS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CCNA#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CCNA#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CCNP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CCNP#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CCRN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CCTI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CDA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CDA#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       CDA#Associate) Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CDA#Associate#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CDL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CDL#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CDMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CDSE#CDSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CEBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CEHRS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       CENTER Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Center of Applied Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Center of Applied Technology North Cisco Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Center of NOVA#Standard Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Center of Technique#Associate degree#Bachelor Degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Centre of Excellence (COE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Cerf#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CERFIFICATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Cert 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CERT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CERTFICATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CERTICATION(S)\\n*Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Certif 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           CERTIFCATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Certificado de Asistencia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Certificat de Civilization 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Certificat de Formation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Certificat de langue 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Certificat de Langue et de Civilisation Francaise 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Certificat de Langue Fran�aise 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CERTIFICATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Certificate  of Career Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Certificate (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    certificate & MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Certificate and Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Certificate Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Certificate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Certificate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Certificate in Integrated Direct Marketing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Certificate in Nursing degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Certificate of Accomplishment 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Certificate of Achievement 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Certificate of Advanced Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Certificate of Appreciation received 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Certificate of Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Certificate of Associated Degree (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Certificate of completion 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CERTIFICATE of COMPLETION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Certificate of completion (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Certificate of Cosmetology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Certificate of Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Certificate of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Certificate of Degree#Bachelors  of Science#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Certificate of Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Certificate of diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Certificate of Diploma#Graduate#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Certificate of Education (H.S. Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Certificate of Electronics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Certificate of Foundation of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Certificate of Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Certificate of Japanese Language Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Certificate of Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Certificate of Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Certificate of Professional aptitude 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Certificate of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Certificate of Proficiency 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Certificate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Certificate/Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CERTIFICATE#BACHELOR of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CERTIFICATE#BOOKKEEPING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CERTIFICATE#DIPLOMA#US School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Certificated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CERTIFICATES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CERTIFICATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Certification Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Certification diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Certification Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Certification of Completion Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Certification of Dental Hygiene 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Certification#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Certifications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       CERTIFICATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CERTIFICATIONS\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Certified 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Certified  Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   77 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Certified Associate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Certified Associate#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Certified Associate#Bachelor Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Certified Associate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Certified Associate#CAPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Certified Associate#CAPM#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Certified Associate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Certified Associate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Certified Associate#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Certified Associate#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Certified Associate#Medical Doctor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Certified Cook's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Certified Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Certified Diploma of Completion 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Certified Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Certified Nursing Assistant Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CET Degree (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CEU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CFA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CFA#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CFA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CFMX 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CFP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CGI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CGLI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       CHAIRMAN'S' LEADERSHIP COUNCIL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Chambre de Commerce et D'Industrie de Strasbourg 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CHANCELLOR'S LIST#CHANCELLOR'S LIST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Chancellor's Scholars and Leaders (CSL) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Chantilly Virginia Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Chantilly Vo-Tech Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CHANTILLYVAUNITED STATES\\n          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Chapter Professional Banking Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Chartered Accountant 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CHARTERED ACCOUNTANT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Chartered Accountant (ACA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Chartered Accountant Diploma#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Chartered Accountant#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Chartered Accountant#Intermediate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Chartered Accountant#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CHDS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Chef Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CHEMICAL ENGINEER. BS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Chemical Engineering B.s#B.a 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Chemical Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Chemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Chemistry Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Chemistry B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Chemistry Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Chemistry-Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Chicago Masters Degree\\nMasters#Bachelors Degree Bachelor of Science#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Chicago....Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Chicago..Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ChicagoM.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Child Care Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Child Development Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Child Development Associate (CDA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Child Development Associate Diploma (CDA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CHILDCARE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           CHILDREN'S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Children's\\nLiterature & Foundations of Education, B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       China's top college. BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ChinaPh.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Chinese Linguist Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Chinese Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CHMM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Christie's Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Christina M. Curtis 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           CI#B.S. ITT#A.S#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CIC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CIEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CII Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CIM Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CIMA'S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CIO   \\nDegree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CIS BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CIS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       CIS Network Security AS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CIS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CIS) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CIS#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CISA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cisco Networking Specialist Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CISSP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CISSP#BS/Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CISSP#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Citation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CITI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CITIZENSHIP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CLA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CLASS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             class 10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Class 10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         class 10#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    class 12#class 10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Class Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CLASS OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Class of '05 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CLASS OF#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CLASS OF#B.E#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CLASS OF#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CLASS OF#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CLASS OF#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CLASS OF#Bachelors of Science (hons.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Class X#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Class XI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CLASS#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Classes 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Classical high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Classics Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Classroom Management.)  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CLC#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CLCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CLEARANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CLEARANCE\tAssociates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       clearance. B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Clearlake        Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Clearlake Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Clerical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Clerk. (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Cleveland BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Client Server Programmer Diploma#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Clinical Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Clinical BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Clinical Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Clinical Nurse Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Clinical Pharmacy Degree#Pharm.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Clinical Research Administration\\nMasters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Clinical Research Monitoring Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Club A.S.I.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           CMA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CMAA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CMAT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CMIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CMIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CMSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CMT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CNA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   45 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CNA Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CNA/GNA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CNAA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CNAM#Bachelor degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CNAM#Bachelors degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CNC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CNE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        CNE & MSCE#Associate of applied Science Degree#BSC & Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CNE#Graduate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           CNM degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CNOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CNP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CNS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CNS Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CO BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            COACH'S AWARD#DEAN'S LIST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           COAST,(BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                COBOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            COBOL#CRM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             COCC#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Cognitive Science PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Cognos BI#Master Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  col. zadok magruder high school#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Colegio de Ingenieros de Venezuela Caracas 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Colegio de Salamanca 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              COLETTE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Collaborative Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Collaborative Degree#Bachelor of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Collage of Dupage \\nAssociate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Colleg A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              COLLEGE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           College course work towards nursing degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       College degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       College Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                COLLEGE DEGREE  (BFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            College Degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    College Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            College Degree#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    COLLEGE DEGREE#COMPUTER SCIENCE\\nbachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      College Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      COLLEGE Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        College Diploma / Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 COLLEGE DIPLOMA. UNDERTOOK A DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                College Graduate (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      College of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      COLLEGE OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            College of Arts & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         College of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        College of Arts and Sciences- (BA) Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                COLLEGE OF BEHAVIORAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   College of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             College of Business Administration \\nBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     College of Business Administration Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    College of Business and Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                College of Business and Economics, BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         College of Business National Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               COLLEGE OF BUSINESS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 College of Dentistry Degree#Doctor of Dental Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              COLLEGE OF HOME SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  College of Liberal Arts and Science#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   College of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               COLLEGE OF SCIENCE#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  College of Southern Maryland Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        College Prep Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  College Prep Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           College Preparatory Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                        College Universitaire Caraibes (Management/Accounting), Associates Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       COLLEGE-PREP COURSES (DIPLOMA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               COLLEGE:  A.S. Degree. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      College#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           CollegeB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CollegeMasters \\n\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Colleges and Universities 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Collegiate (D.E.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Columbia MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Columbia. Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  COM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Combination BS#MS, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Combination of Masters and Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Combined B.A./M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Combined Degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Combined Degree#Juris Doctor and Master of Public Health#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Combined Masters and Bachelors of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Combined Masters#MBA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Command & Staff Diploma#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 COMMANDER'S#DESIGNATED NAVAL AVIATOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Commencement of Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             COMMERCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Commerce#Bachelor of Electrical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Commerce#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Commerce#M.S#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Commerce#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Commercial and Investment Real Estate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       COMMERCIAL ART 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Commercial Business Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Commercial Curriculum Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Commercial Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Commercial Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Commercial Lending Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Commercial Secretary, (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Commis de Cuisine Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Commis de Partie 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Commonwealth of Virginia GED graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Communication\t (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Communication\tBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  communication  Degree#Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Communication (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Communication Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Communication of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Communication Sciences and Disorders B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Communications (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 COMMUNICATIONS / B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Communications & Culture B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Communications Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Communications Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Communications Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Communications of Journalism, BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Communications, B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Communications, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        communications. \\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Communications' Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Communicators 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Community Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Comp. Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Competed Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Complete bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Complete Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Complete Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Completed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            COMPLETED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        completed A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Completed Associates Degree#General Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Completed coursework towards DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Completed coursework towards Nursing degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Completed coursework towards Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Completed Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Completed Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Completed International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Completed Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    completed. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Completing A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Completing Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Completing B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Completing Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Completing Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Completing Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Completing Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Completing BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Completing Business Admin Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Completing Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Completing degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Completing Masters Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Completing Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Completing Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Completing Masters of Science#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CompletingB.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Completion 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           COMPLETION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Completion of A.S Degree#A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Completion of A.S Degree#TBD#A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Completion of bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Completion of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Completion of degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Completion of high School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Completion of International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Completion of Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Comprehensive 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Comprehensive high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CompTia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CompTIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             CompTIA A+ Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             COMPTIA A+ Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                CompTIA A+ Certification#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CompTIA A+ Certification#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CompTIA A+ Certification#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Comptia A+ Certification#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               COMPTIA#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Computer Aided Drafting (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             COMPUTER ANALYST DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Computer Analyst/Programmer Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Computer Applications Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Computer Applications Diploma#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Computer Applications Specialist Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Computer Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Computer Careers Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Computer Clerical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Computer Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Computer desktop Support Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Computer Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Computer Electronics Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Computer Electronics Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Computer Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Computer Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Computer Graphic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Computer Network Systems degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                             Computer Network Technology    Certificate of Completion and AAS Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Computer Networking (LAN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Computer Networking Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Computer Networking Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Computer Operations (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Computer Operations Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Computer Operations Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Computer Programmer Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Computer Programmer's Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Computer Programming and Operating Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Computer Programming and Operations Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Computer Programming Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Computer programming Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Computer Programming Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         COMPUTER PROGRAMMING DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Computer Programming Diploma#Bachelor of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Computer Programming Diploma#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Computer Science\tPh.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                COMPUTER SCIENCE (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 COMPUTER SCIENCE A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Computer Science Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             COMPUTER SCIENCE B.A. WITH CONCENTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Computer Science B.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Computer Science B.S#B.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Computer Science BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Computer Science BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Computer Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Computer Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              COMPUTER SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Computer Science Degree (BS)#Diploma) ICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Computer Science Degree BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Computer Science Degree.  Calculus. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Computer Science Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Computer Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           computer science diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Computer Science Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Computer Science Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Computer Science Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          COMPUTER SCIENCE TECHNOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Computer Science Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Computer Sciences Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Computer Skill Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Computer Skills Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Computer Software Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Computer Software Programmer Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Computer Specialist ( Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Computer Support 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Computer Support Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Computer Technology degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Computer Technology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Computer USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Computerized Bookkeeping Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Computerized Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Computerized Business Systems - (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Computerized Business Systems Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Computerized Business\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Computers Science Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Computing (B)#B) Physics (B) Computing (A) Business (B) \\nFrench (B)#B,B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Concentrated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Concentrating 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CONCENTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Conclusion of Masters#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Conferment of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Conservatory of Dance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Consideration of others Workshop Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Construcci�n de Chimeneas de quema de gas 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                 Construcci�n de la red de agua potable de la ciudad de Latacunga.\\nConstrucci�n del sistema de alcantarillado sanitario y tratamiento de Mocha.\\nConstrucci�n de la red de agua potable de Pilahuin#Construcci�n de la l�nea de conducci�n de agua 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                        Construcci�n del sistema de agua potable de la urbanizaci�n de la Cooperativa de empleados del Ministerio  de Agricultura.\\nEstudios de optimizaci�n de la planta de tratamiento de Puengasi 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Construction Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Consultant 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Consulting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Consumer Lending Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Consumer Lending Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               CONT'D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Cont'd Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Cont#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Contemplating Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Continuation of B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Continue Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Continued Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Continued Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Continuing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Continuing Education\t\t\t       (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Continuing education - Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Continuity of Operations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Continuity of Operations (COOP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Contract Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Contracting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                             Control de las �reas contable y administrativas de empresas de mediano tama�o\\nelaborando un plan de trabajo de estas �reas para el control de p�lizas, flujo de\\nefectivo, control de gastos (elaboraci�n de presupuestos), integraci�n de centros de 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                               Controle econ�mico de contratos de torres de medi��o e�lica e solar. Acompanhamento de cronograma \\nde instala��o e manuten��o de torres de medi��o. An�lise e tratamento de dados, elabora��o de relat�rios, \\nestudos de especifica��es t�cnicas e an�lise preliminar de �reas de interesse e�lico 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Convocation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Cooking & Catering Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Coordinador de la actualizaci�n de planes de estudio de la 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                   Coordinador de Proyectos de Construcci�n#An�lisis de mercados y desarrollo de estrategias de venta 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Coordinator of Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  COR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Core Leadership Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Core Studies#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Corporate Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Corporate Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Correspondence degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                COSEP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Cosmetologist Diploma#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cosmetology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          COSMETOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Cosmetology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cosmetology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cosmetology Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cosmetology License 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Cote d'Ivoire Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 COTR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Counseling and Psychology Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Counseling#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Counterintelligence Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    County (UMBC)#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           COUNTY B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             COUNTY#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cours de Civilisation Fran�aise 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               COURSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Course of Study Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                COURSE TITLE (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Courses 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Coursework 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           COURSEWORK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   COURSEWORK TOWARD BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Coursework toward Business Administration bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Coursework towards Business Education degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Court of Master Sommeliers\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CPA/Masters of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CPA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CPA#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CPA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     CPA#Master (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CPA#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CPA#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CPA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CPC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       CPH#Bachelor of Medicine , Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CPHI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CPP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CPR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CPT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CPT#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CRD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Creative Advertising Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Creative Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Creative Writing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Credential of Readiness 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CREDENTIALS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CREDENTIALS\tMaster of Jurisprudence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       credit diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Credit diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Credit Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Credit towards Computer Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Credits 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Credits, graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Credits#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Criminal  of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Criminal Justice  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Criminal Justice Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Criminal Justice Degree, A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Criminal justice Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Criminal Justices Courses Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CRIMINOLGY DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CRIMINOLOGY & POLICE SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Criminology DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Critical Care Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CRM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CRS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           CS Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CSM#PMP#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CSS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CSW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CTA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CTA#CTA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CTAssociate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CTE Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CTEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CTI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Cuba. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Culinary Art Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        culinary arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Culinary arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Culinary Arts (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Culinary Arts (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Culinary Arts A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Culinary Arts A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Culinary Arts Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Culinary Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CULINARY ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Culinary Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Culinary Arts Diploma#Associates of Occupational Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Culinary Arts Diploma#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Culinary Arts Diploma#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Culinary Arts Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Culinary arts#Associate's ( CDA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Culinary degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Culinary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Culinary Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Culinary Degree#Associate of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Culinary Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Culinary of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Culinary Professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Culinary, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Cultures. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                cum laudegraduate          Degree#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 CUNY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   CURATORIALPROJECTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Current 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Current student\\n        Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Current#Bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CurrentAssociate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CurrentAssociate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CurrentAssociate of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CurrentBachelor of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           CurrentBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              CurrentBachelor of Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       CurrentBachelor of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           CurrentHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            currently 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Currently 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                             Currently\tMBA#Master of Business Administration#BBA#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Currently enrolled, will graduate/ receive Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Currently Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Currently MA#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Currently pursing  A.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Currently Pursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Currently Pursuing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Currently Seeking Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Currently seeking Paralegal AAS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Currently#Master's degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         CurrentMaster of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           CurrentMaster of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Curriculum 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CURRICULUM Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Curriculum#High School Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Curso de Branding 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Curso de Especializa��o (Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Curso de Forma��o de Conciliadores - de abril a maio de 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Cursos de Aperfei�oamento\tCurso de Planejamento 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Customer Management Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Customized Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CVS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Cybersecurity (Master of Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cybersecurity Assoc. of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          CyberSecurity Associate of Applied Science Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CYBERSECURITY Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Cybersecurity Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Cybersecurity, Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CYBERSECURITY#Associate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Cybersecurty assoicate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  C�GEP Diploma (DEC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    d 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              d\tService Tech Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D & D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 D &D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            D Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             D Doctorate of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 D in 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            D, MPH#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 D. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        d. BSc Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D. degree#B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        D. Phil (PhD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               D. S#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 D. Sc#Doctor of Science#Degree#Masters#M.Sc. Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  D.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    D.A.E  CIVIL#diploma of Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      D.A.E (Mech)\\nDiploma of Associate Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              D.A.R.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              D.A.T.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     D.B.A, Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        D.B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     D.B.A. Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        D.B.A.., Doctorate of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              D.B.A#Doctor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      D.B.A#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          D.B.A#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 D.BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      D.C.A#Bcom#Bcom 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      D.C.S. (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              D.C#D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  D.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.D.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        D.D.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      D.D.S#P.A#D.D.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  D.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.E.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.E.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.E.C. College Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              D.E.C.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         D.E.L.E. (Diploma of Spanish 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              D.E.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 D.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.Env 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.F#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           D.I.T#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.L.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  D.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               D.M.A. Doctoral degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.M.D#GENERAL DENTIST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    D.M.E. (Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 D.M.I.T#Graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     D.M.L.T (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  D.M.M. (Diploma#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        D.M.R.D#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              D.M#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             D.M#Master of Design Methods#B.A.      Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.Min 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  D.o 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  D.O 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.O.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        D.O.B#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            D.O.B#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             D.O.B#OL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 D.O#A+ certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           D.O#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.P.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               D.P.M#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        D.Phil. (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          D.R Congo. Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  D.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              D.S.S. Doctor of Strategic Security#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       D.S.S.C.E (XII#C.B.S#Ph.D. degree#Ph.D. degree#M. Sc#M.Sc#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 D.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 D.SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       D.Sc. and Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    D.Sc. Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   D.Sc., Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            D.Sc#D.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           D.Sc#M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   D.Sc#M.A.S#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         D.Sc#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        D.Sc#M.S#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            D.Sc#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    D.Sc#Masters#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           D.Sc#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.V.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        D.V.M. (V.M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D.V.M.(Doctor of Veterinary Medicine) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              D'Amore 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            D'Amore#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          D'Arcangelo 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  d'architecture de la ville de Paris 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             D'Ivoire 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             D\\n(Management)#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  D#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              D#M.A#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    D#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              D#S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DAC#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DAE (Administration of Enterprises Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Dairy   Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Dairy Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dame Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Damian D. Blum, D.M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DAST (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Data Entry Diploma#Diploma          High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Data Processing Computer Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Data Processing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Data Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DATA#Bachelor's degree#Associate s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Date Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Date diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Date of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Date of Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Date of diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Date of Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DATE OF DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Date of Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Date of Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                dates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DATES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dates of Attendance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Dates of Attendance#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Dates\\nDegree(s) or Diploma(s)#NSC ( National Senior Certificate)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DATS / Graduate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DAU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DavenportBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DAWIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DAWIA#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DBA (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DBA (Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DBA Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DBA, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DBA, Doctor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DBA, Doctorate of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DBA#Second BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DBMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DC\tHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DC     HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DC    Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DC  Associate's \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DC Associate's Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DC Associate's\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DC Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DC Degree#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DC Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DC High School Diploma#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DC High School Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DC High School Equivalency\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DC SPECIAL POLICE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DC#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     DC#Bachelors of Fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DC#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DC#Doctor of Chiropractic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DC#Juris Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DC#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DC#Masters of International Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DCA (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DCA (Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DCAssociates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DCAssociates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DCB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DCID 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DCJS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DCJS ID 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             DCMasters of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DCMasters of Science#PABachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DCMHA#NCBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DCPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DCPS#Diploma#Associate Broker 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DCPS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DCS (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DDS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DDS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DDS#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DE Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DEA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DEA d'anglais#Post-MA Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DEA#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Dean of Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Dean's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DEAN'S FELLOWSHIP (SCHOLARSHIP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DEAN'S FELLOWSHIP (SCHOLARSHIP)#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DEAN'S FELLOWSHIP#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DEAN'S LIST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DEAN'S LIST\\n\\n\\n     HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DEAN'S LIST\\nFORENSICS SCIENCE DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DEAN'S LIST#CLASS OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Dean's#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DEANS LIST INDUCTEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Debutante and Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DEC#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DECA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DECEMBER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DECEMBER#Bachelor Aviation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DECEMBER#Bachelors of Health#Bachelors of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DECEMEBER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Declared Bachelor Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DEF Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DeferredBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  736 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1068 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree\t\t\tAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree\t       School\t\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree\tA.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree\tAssociate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree\tAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree\tBachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree\tBachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree\tBachelors Degree (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree\tBachelors Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree\tDoctorate Degree (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree\tHigh School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree\tM.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree\tNo Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree          Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DEGREE          BECHELOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DEGREE    YEARS ATTENDED#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree  A. A#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree - A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DEGREE (BACHELOR OF ART) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DEGREE (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Degree (Doctorate)#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                degree (Juris Doctor) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Degree &Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Degree Associates#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Degree awarded Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DEGREE AWARDED: Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DEGREE B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree Bachelor#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DEGREE MASTERS OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree Masters of Science#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree No Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  degree of  Doctor of Philosophy#degree of Master of Art#degree of Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            degree of  Doctor\\nof Philosophy#degree of Master of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     degree of \\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree of Applied Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  degree of Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Degree of Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree of Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   degree of Associate of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree of Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   degree of Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Degree of Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree of Bachelor of art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree of Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree of Bachelor of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree of Bachelor of Business (Accountancy) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree of Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree of Bachelor of Business Administration#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        degree of Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree of Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    degree of Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree of Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       degree of Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree of BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    degree of Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree of Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree of Doctor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree of Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree of Doctor of Medicine (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       degree of Doctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          degree of Doctor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree of Doctor of veterinary medicine (DVM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             degree of Doctor\\nof Philosophy#degree of Master of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree of Doctorate of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree of Doctorate of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Degree of Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree of Engineer (Professional Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree of Engineer#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               degree of Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree of Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Degree of M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree of MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree of Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   degree of Master of \\nInformatics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  degree of Master of Art#degree of Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree of Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          degree of Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree of Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          degree of Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      degree of Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree of Master#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         degree of Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         degree of Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Degree of MB,BS#Master of Public Health#Degree of MPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Degree of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree of Medicine (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Degree of Proficiency 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DEGREE OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DEGREE PROGRAM-Masters of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Degree Type Subject of Degree School of Degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree- (AA)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree, A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DEGREE: A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DEGREE: BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DEGREE: Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            degree. \\n-----------\\n\\n\\n--------------\\nB.S#degree). First Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree(s) or Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree(s) or Diploma(s) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree(s) or Diploma(s)\\nB. SC. (HONS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree(s) or Diploma(s)\\nORDINARY NATIONAL DIPLOMA#BUSINESS STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree(s) or Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree(s) or Diploma#Degree(s) or Diploma(s) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree) A. MAR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            degree) degree#progress Degree#Bachelor's Degree#degree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree) High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree/Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree\\n \\n\\nHigh School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree\\n \\n\\nNo Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree\\nAssociate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree\\nAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree\\nHigh School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree#A.A.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree#A.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree#A.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree#A.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     degree#AA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              degree#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#Associate Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DEGREE#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree#Associate Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Associate Degree#Degree#Associate Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#Associate Degree#Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree#Associate Degree#Degree#Bachelor's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Degree#Associate Degree#Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  degree#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Degree#Associate of applied science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree#Associate of Applied Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree#Associate of Applied Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          degree#Associate of Arts degree#B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree#Associate of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree#Associate of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      degree#Associate of\\n     Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DEGREE#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#associate's degree#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Degree#Associate\\nDegree (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 degree#Associate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree#Associates Degree (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     degree#Associates Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       degree#Associates of Arts#degree#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree#Associates of Culinary Arts Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DEGREE#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree#Associates of Visual Communications#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            degree#Associates' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DEGREE#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Degree#B.S#Bachelor's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree#B.S#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Degree#B.Sc. EE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     degree#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Degree#BA Degree#LMSW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#BA or BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree#BA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#BA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#BA#Master of Cyber 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Degree#Baccalaureate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree#Bachelor Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#Bachelor of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Degree#Bachelor of Commerce (B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#Bachelor of Commerce#Advance diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Degree#Bachelor of Commerce#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree#Bachelor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#Bachelor of Electrical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DEGREE#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    degree#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       degree#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#Bachelor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Degree#Bachelor of Sciences (B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree#Bachelor's and Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Degree#Bachelor's and Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  221 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Degree#Bachelor's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  126 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#Bachelor's Degree#Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree#Bachelor's Degree#Degree#Associate Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree#Bachelor's Degree#Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Bachelor's Degree#Degree#Bachelor's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Bachelor's Degree#Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree#Bachelor's Degree#Degree#Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#Bachelor's Degree#Degree#Higher Secondary#Bachelor's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Degree#Bachelor's Degree#Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#Bachelor's Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DEGREE#Bachelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#Bachelor's\\nDegree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree#Bachelor's#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            degree#Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree#Bachelor&apos 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree#Bachelor#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Bachelor#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DEGREE#BACHELORS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             degree#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Degree#Bachelors of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DEGREE#Bachelors of Liberal Arts#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          degree#Bachelors of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DEGREE#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#Bachelors\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree#Bachelor�s and Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DEGREE#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     degree#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#BS#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree#Business Administration and Management#Master's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#Class of Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Degree#CONTENT#COURSE#COURSE#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Degree#D.B.A. Doctorate#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Degree#Dates of Attendance Marketing Associate Degree#Degree#Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  159 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DEGREE#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#Degree\tBachelors (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree#Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Degree#Degree#Associate Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Degree#Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Degree#Bachelor's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree#Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   37 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Degree#Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree#Degree#Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    degree#degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              degree#degree#LICENSE'S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree#Degree#Master's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Degree#Master's Degree#Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#Degree#Wiley College Organizational Management Bachelor&#39;s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#DEUG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DEGREE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DEGREE#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#Diploma of Accounting#G. A. Giobert of Asti. (Italy) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#Diploma#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        degree#Diploma#General Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree#Doctor of Philosophy (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree#Doctor of Philosophy (PhD)#Master of Science (MS)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#EXPECTED COMPLETION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#Graduate Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Graduate#Master's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#High School\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           degree#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#High school diploma (standard high school diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  degree#High School Diploma, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree#High School Diploma#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree#High School Diploma#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#High School or equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DEGREE#HIGHT SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Degree#HS Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree#HS#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree#J.D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#JD Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree#Lawyer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#M.B.A. Degree#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DEGREE#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Master Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Degree#Master degree#Engineering degree#Bachelor of Science (B.Sc#DUT#University Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Degree#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#Master of Arts#Bachelor of Interdisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree#Master of Business Administration (M.B.A#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Degree#Master of Business Administration#MBA#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree#Master of Computer Applications (MCA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Degree#Master of Computer Applications#M. S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree#Master of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Master of Computer Science#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree#Master of Engineering Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree#Master of Information Management Master's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree#Master of Laws (LL.M#Juris Doctor#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#Master of Laws (LLM)#Master of Laws (LLM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Master of Public Administration (M.P.A#Juris Doctor#J.D#Bachelor of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#Master of Public Health (MPH)#Bachelor's degree#Associate of Arts and Sciences (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree#Master of Public Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#Master of Science (M. Sc#Bachelor of Science (B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Degree#Master of Science of Strategic Intelligence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Degree#Master of Science#Master's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#Master of Technology (MTECH) Master's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Degree#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DEGREE#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Degree#Master's (MIT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree#Master's (MIT)#Bachelors#Associates#Associates - Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#Master's Degree of Medicine#Bachelor's Degree of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree#Master's degree#B.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#Master's Degree#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree#Master's Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree#Master's degree#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree#Master's Degree#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree#Master's degree#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#Master's degree#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Degree#Master's degree#Bachelor of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Degree#Master's degree#Bachelor of Engineering (BEng) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#Master's degree#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree#Master's degree#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree#Master's degree#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Degree#Master's degree#Bachelor of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Master's degree#Bachelor of Technology (B.Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Master's degree#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree#Master's degree#Bachelor s Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#Master's Degree#Bachelor's Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree#Master's Degree#Bachelor's Degree#None 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#Master's degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree#Master's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  170 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Degree#Master's Degree#Degree#BA#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Degree#Master's Degree#Degree#Bachelor of Business Administration Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Degree#Master's Degree#Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Master's Degree#Degree#Bachelor's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree#Master's Degree#Degree#Bachelor's Degree#Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Master's Degree#Degree#Bachelor's Degree#Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree#Master's Degree#Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Master's Degree#Degree#Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree#Master's Degree#Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree#Master's Degree#Degree#Master's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Master's Degree#Degree#Master's Degree#Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Master's Degree#Engineer's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#Master's degree#Master of Engineering (M.Eng#Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Master's Degree#Master s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Master's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Degree#Master's degree#Master's degree#Bachelor of Education (B.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Master's Degree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Master's Degree#Master#Bachelor's Degree#Bachelor of Arts#Bachelor's Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#Master's of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree#Master's of Business Administration#Master's of Science#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               degree#Master's of Project Management#Master's of Business Acquisition 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Degree#Master's of Real Estate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree#Master's of Science#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Degree#Master's of Strategic#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree#Master's#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Degree#Master's#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Degree#Master's#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Degree#Master's#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Degree#Master#Master#Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DEGREE#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Degree#Masters (M.B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Degree#Masters Computer Science#Bachelor's Degree#Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#Masters of Business Administration Master's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Degree#Masters of Information Systems Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#Masters of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    DEGREE#Masters of Science#Bachelors of Science#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DEGREE#Masters#Bachelor Of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree#Masters#Bachelors/Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 DEGREE#Masters#DEGREE#Bachelor of Technology (B.Tech, Hons.) COLLEGE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Degree#Masters#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degree#Masters#MBA#Juris Doctorate (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DEGREE#MAY#DIPLOMA GRADUATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#MBA          Master's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree#MBA          Master's Degree#Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree#MBA Master's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree#MBA#Master's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Degree#Medical Billing and Coding Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Degree#MIS Bachelor's Degree#Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   degree#MS and Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Degree#Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Degree#PA#Bachelor's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          degree#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#Ph.d 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Degree#Ph.D#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Degree#R. M. I. T. - Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Degree#School of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Degree#school of technology of Casablanca#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Degree#Telecommunication and Computer Network Engineering Master&#39;s Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Degree#UMUC#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Degree#University of Maryland English Language &#38; Literature Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degreed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Degreed Applied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DEGREES EARNED#High School Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Degrees: (BA) Graphic Design, (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DEGREES#Master of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DEGREESMaster's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DEI#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DEL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DELEGATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     DELF A2 (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     DELTA. (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DELTA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DELTEK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Dental Assistant Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Dental Assisting Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DENTAL ASSISTING DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Dental Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Dentist Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Dentistry BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DEOMI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Department   of   Business   Administration#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Department of\tMaster's Degree#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Department of Allied Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Department of Applied mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Department of Applied mathematics#BS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Department of Architecture (B.Sc. Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Department of Biochemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Department of Biochemistry#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Department of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Department of Computer Science Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Department of Computer Science\\nMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Department of Computer Science#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Department of Defense Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Department of Economics (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Department of Economics#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Department of Education Graduate Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Department of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Department of Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Department of Homeland Security (DHS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Department of Literature's M.F.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Department of Mass Media Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Department of Mathematics & Mechanics\\nDiploma Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Department of Medical and Research Technology B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Department of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Department of Music#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DEPARTMENT OF POLITICAL SCIENCE MASTERS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Departments of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DEPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DEPLOMA#DEPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Dept. of Computer Science\t\\nPh.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Dept. of MULTIMEDIA SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Dept. of#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                         Desenho de isom�tricos de c�lculo e de tubula��o, detalhes de bocas de lobo, suportes e plantas de tubula��o 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DESIGN A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Design Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Design Diploma\\nB.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Design Executive Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Design of Database Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Designer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Desired Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Desktop Publishing Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DESS#M.S. or M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DETAILS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DEUG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DEUG#Baccalaur�at 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DEUG#HND 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                development. (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Devic  Scholar & Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                               DeVry's keller graduate school of management#Master of Business Administration (MBA)#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DHA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DHMS (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DHS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DHTML 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DI S) Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DI.P.E.S.II (MA)#Bachelor of Arts(BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     DIA#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DIA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DIA#DIA#DIA#DIA#DIA#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DIA#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diamond Grading Professional Diploma#Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Did Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Did not Earn Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Did not finish Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diesel Mechanics Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diet and Nutrition Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Dietetic Internship and BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Digital Design Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Digital Electronics Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Digital Media Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DIMPOLMA CLASS OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dip 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DIP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Dip. Th (Diploma#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  860 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              dIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                29264 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DIploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  586 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma\t\t        High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma\t\t    \\n*M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma\t\\n\\n\\n\\n\\n\\nAssociate of Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma\t\\n\\n\\n\\nAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DIPLOMA\tCLASS OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma\tIGNOU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma\tYears 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma          Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma          Bachelor of Nursing Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma          Diploma#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma          District of Columbia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma          Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma          Secretariat and office 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma        High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma    Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma   Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma  \\nDiploma\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma  Computer Programming (Honors Graduate)#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma  Dos de Mayo E.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma ____________________________________________________________________________ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma - GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma -12th Grade , 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma (AACN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma (advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 diploma (AP Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma (Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma (Associate Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma (Cert. of Merit -Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma (CMA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma (G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma (Graduate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma (High School); A.M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma (HND)#Bachelor of Science#B.S#National Diploma (ND)#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma (including B.Sc ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma (International Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma (International Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma (IP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma (JUNE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma (LPN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma (MA#License (B.A. equivalent).  Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma (ND) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma (UK) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma * GED * 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma / Associated degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma / Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma / Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma /Associated degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma \\n          UDCCC#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma \\n\\n Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma \\n\\n\\nBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma \\nAssociate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma \\nAssociates Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma \\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma \\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma & Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma & Advanced Diploma#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma & FCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma & High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma &\\nArts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma > AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     diploma 00018659 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma ABE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma Achieved 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma An AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diploma and advance diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma and Advanced diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         diploma and Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma and Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diploma and Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma and Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma and certificate of completion 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma and CNA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma and French Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma and graduated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma and Graduation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma and Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma and Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma and T.A.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma Archives Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma Awarded 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma certificate (associate degree)#Rockville 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma Computer Programming 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma CPR (A.H.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma DC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma de cuisine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma degree#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma degree#Diploma degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma Dental Assistant 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma Doctor of Medical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma Doctor of Medical Science#Diploma#Master of Medical degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma Doctor of Medical Science#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       diploma earned 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma FCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma Granted 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma I 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma I&II 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma in High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DIPLOMA International Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma IWI BS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma Obtained 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma of Academics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma of Achievement 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma of Advanced Studies#Equivalent of Master#Diploma of Specialized Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma of Agricultural Engineer, and BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma of Applied Information 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma of Applied University Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma of Architect 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma of Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma of Associate Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma of Associate Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma of Associate Engineering#PAF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma of Authorized 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma of Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma of Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma of BACHELORS OF Education (B.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma of Business  Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma of Business Administration (DBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma of Business Administration (DBA) &mdash 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma of Business and Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma of Business Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma of Business School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diploma of Cameroon (B.T.S)#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma of Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma of Collegial Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma of commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma of computer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma of Computer Applications Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma of Consultant 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma of Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma of Digital Media 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma of Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma of Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma of EDC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma of Engineer#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma of English Language#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma of Essential Culinary Skills 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma of Esthetics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma of Executive Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma of Experimental Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DIPLOMA OF GENERAL DESIGN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma of Graduation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma of Graduation#B.Sc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma of Graphic Designer#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma of Hazzan#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma of health science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   diploma of high school achievement 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma of Higher Education#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma of Higher Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma of Hispanic Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma of Homoeopathic Medicine and Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma of Honor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma of Honours 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma of Hospitality Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma of IAE#Post Graduate Degree of Institut Superieur de Gestion de Paris#Diploma of IFP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma of International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma of Internetworking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma of Interpreting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma of Languages 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma of Law\\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma of Legal Practice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma of Marketing at SAIGONTECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma of master#Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma of Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma of MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma of media and sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma of Medical Assisting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma of Ministerial Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma of Network Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma of Neuroradiology#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma of Nuclear Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma of Pashto proficiency#Diploma of Farsi proficiency 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma of physiology#Bachelor Degree (BVMS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma of Post Graduated Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             diploma of Post-Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma of professional 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma of Professional Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma of professional#B.A#degree#high school of Cameroon ( high\\nschool Diploma ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma of Programme 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma of senior technician#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma of Skin Care 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma of Spanish 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma of Specialist 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma of Specialization 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma of Specialized Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma of State exam 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma of Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma of Superior 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma of Teaching 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma of Technician 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma of Technician of Telecommunications (ISDN/GSM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma of Technician Specializing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma of Technician#Qualification Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma of Technologist Civil Engineer of Sciences and Technical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma of Technologist Civil Engineer of Sciences and Technical of the Water 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma of Technology (DUT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma of TESOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma of Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma of Three 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma of Tourism\\n    �    Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma of Vocational Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma of Web Designing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma P. G 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma Philology and Translator's Qualifications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma Printing and Graphic Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma received 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma References 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma Scientific 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma Superior de Comunicaci�n y G�nero\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma Theory of Dental Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma Travel and Tourism\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma-CXC& GCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma, A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma, Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma, Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma, B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma, Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma, GED or Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma, GED or Degree#Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma, GED or Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma, Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma, International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               diploma, master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma: B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma: Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma: Howard D. Woodson SHS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma????? ????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma????????????? ????????????? ????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma????????????? ????????????? ????????????? ????????????? ????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             diploma. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                               Diploma.  ____________________________________________________________________________________________________________ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma.  Advance Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma. \\n\\nJOB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma. \\nCREI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma. Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma. LPN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma.............. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DIPLOMA.\\n          FROM#FREETOWN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma.\\n*B.E.E. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma.\\n\\n\\nJOB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma.\\n\\nJOB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma's#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma(ECE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma(s) (2) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma(s)#Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma) ???? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma) D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma) LPN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma* ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** *#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma/ Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma/Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DIPLOMA/CERTIFICATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma/Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma/Degree \\n B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma/Degree: Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma/Degree#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DIPLOMA/DEGREE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma/Degree#Doctor of Philosophy\\n( Ph.D)#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma/Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma/G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma/MA#CNC&S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma\\n          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma\\n*Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma\\n*Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma\\n*Biotech Diploma#associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma\\n*Medical Office Professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma\\n\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma\\nAA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma\\nExternal Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diploma\\nH.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma\\nHigh School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma\\nHigh School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma\\nhigh school lycee de jeune fille 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma\\nICS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#12th Class 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#A.A degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#A.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#A.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#A.A#B.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#A.O.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#A.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#A' Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#A+ Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#AA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#AA) Associate of Arts#BA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#AA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#AAS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Academy of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Accounting and Bookkeeping Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Accounting Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#AdHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#ADN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Advance diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     diploma#Advanced Business Administration Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             diploma#Advanced Business Administration Diploma#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DIPLOMA#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Advanced Diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Advanced Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#Advanced Diploma#International Baccalaureate Bilingual Diploma#Neuroscience BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     diploma#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Advanced Studies Diploma#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Afghanistan (Diploma#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#AJROTC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#AMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#Application software (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#AS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#AS Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diploma#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Associate Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             diploma#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DIPLOMA#ASSOCIATE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Associate Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Associate Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Associate Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Associate Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diploma#Associate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Associate in Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#Associate of Applied Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Associate of Applied Science Degree#Associates of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#Associate of Applied Science#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Associate Of Applied\\nScience (AAS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#Associate of Arts Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Associate of Electronics Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Associate's Degree of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Associate's Degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Associate\\nof Science#Diploma#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Associate#Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#Associate#Bachelors/Master of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Associate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Associates \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diploma#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   45 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diploma#Associates degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#Associates Degree of Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Associates Degree#Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Associates Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Associates Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#Associates in Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Associates of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           diploma#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DIPLOMA#ASSOCIATES OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Associates of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#Associates of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Associates#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#AWARDS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#AWARDS & ACOMPLISHMENTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#B BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#B. M. Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#B.A (Economics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diploma#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DIPLOMA#B.S BIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#B.S. Degree#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#B.S. degree#Principles of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#B.S.\\nFaculty of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#B.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#B.S.C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#B.S.E Board#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#B.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#B.S#CLASS OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#B.S#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#B.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#B.S#of Yemen. \\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#B.Sc (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#B.Sc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#B.T.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#B.Th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DIPLOMA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#BA (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#BA (Hons)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#BA Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#BA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#BA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma#Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DIPLOMA#BACGELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Bachelor and Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diploma#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Bachelor Degree of Medicine and\\nSurgery (Equiv. of US MD Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Bachelor Degree#Bachelor of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Bachelor Hons. (Bsc. Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Bachelor of Arts (B. A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#Bachelor of Arts#Master of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Bachelor of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#Bachelor of Business Administration#BBA(HRM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Bachelor of Business Administration#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Bachelor of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#Bachelor of Business\\nAdministration BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Bachelor of commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Bachelor of Commerce#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Bachelor of Computer degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Bachelor of Corporative Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Bachelor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Bachelor of Fine Arts#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Bachelor of Fine\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Bachelor of Medicine#Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#Bachelor of Natural Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Bachelor of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   66 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Bachelor of Science (BS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Bachelor of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma#Bachelor of Sociology#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Bachelor of\\nArts#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Bachelor Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Bachelor's (honors) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#Bachelor's and Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Bachelor's Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Bachelor's Degree#Bachelor's Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Bachelor's Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Bachelor's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Bachelor's\\nDegree B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               diploma#Bachelor's#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Bachelor\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Bachelor#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#BACHELORS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Bachelors  of  Arts#Bachelors  of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Bachelors Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Bachelors Degree#B. Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Bachelors Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Bachelors Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Bachelors Degree#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Bachelors of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diploma#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Bachelors of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#Bachelors of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Bachelors of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#Bachelors of sociology science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Bachelors#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Bachlor#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Bangalore.\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Beauty  Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#BGIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Bookeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#BS/MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#BSC#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#BSIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#BTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Business Correspondence Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma#Business Fundamentals Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   39 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DIPLOMA#BUSINESS STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Business Studies#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#C.A.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#C.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#CEO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diploma#certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Certification/Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#CEU'S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#COBOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#Cooperativa de Caficultores de DOTA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Cosmetology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Cosmetology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#CPR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Culinary Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Culinary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#CXC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#D.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#D.G.O 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#D.I.S.M.)\\nDiploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DIPLOMA#DAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#DBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#DBM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#DCJS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       diploma#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       diploma#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma#Degree Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DIPLOMA#Degree of B.A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#degree of Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           diploma#Degree#Bachelor of Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Degree#Diploma#Degree#Diploma#Degree#Degree#Diploma#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#DEL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#DEUG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#DIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diploma#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  361 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DIPLOMA#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DIPLOMA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DIPLOMA#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#Diploma#Academic Excellence Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     diploma#diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Diploma#Associate Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Diploma#Associate Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Diploma#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Diploma#B.Sc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Diploma#Bachelor Degree#Bachelor Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#Diploma#Bachelor of Engineering#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#Diploma#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#Diploma#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diploma#diploma#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DIPLOMA#DIPLOMA#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Diploma#Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Diploma#Diploma#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#Diploma#Diploma#Bachelor Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#Diploma#Diploma#Bachelor of Science#Nursing Diploma#Diploma#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Diploma#Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Diploma#Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Diploma#Diploma#Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Diploma#Diploma#Diploma#Diploma#Diploma#Diploma#Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Diploma#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Diploma#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Diploma#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#Diploma#High School) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma#Diploma#Higher Diploma#Post Graduate#Masters of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Diploma#J.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Diploma#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Diploma#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Diploma#National Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Diploma#Sex and Drug Counseling Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#Diplome de Bachelier de l'Enseignment du Second Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#Distinguished Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#DIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#DNIIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Doctor of Philosophy (PhD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Dr. S & S S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#ECPI ; Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#ET#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma#Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DIPLOMA#EXPECT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Faculty of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#FAMU (BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#G. E. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#GC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diploma#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#Ged 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#GED#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#General Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#General Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#General Education Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#General, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#GNIIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma#GNIIT#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     diploma#graduate diploma#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Graduate of Business IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             diploma#Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Graduate#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Graduate#Masters of Strategic Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#Graduated.  Academic diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#H.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#H.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diploma#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#High School          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DIPLOMA#HIGH SCHOOL          DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#High School  Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#High School (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#high school and graduated#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diploma#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diploma#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diploma#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  176 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DIPLOMA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#High School diploma - 12th Grade ( 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#high school diploma. I 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#High School Diploma#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#High School Diploma#Associate of Arts (AA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#High School Diploma#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#High School Diploma#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#High School Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#HIGH SCHOOL DPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#High School Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#High School Equivalency Diploma (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#High School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#High School Graduate (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#High School Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#High School Graduate#High School Diploma#Business Trade Technical Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diploma#high school#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Higher   Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#Higher Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             diploma#higher education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Higher National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#HND 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Honors Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#HS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#HVAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#I.T (A) and Accounting (B) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#IB#Diploma#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diploma#Info Pro Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#institute of management#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DIPLOMA#INTERMEDIATE#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diploma#International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#International Baccalaureate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#IT Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#IT Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#Italian Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#Italian Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#JIFMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Juris Doctor#Master of Science#Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Knowledge of Assistance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#LI ZA). Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#Literary Media and Communications Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#LPN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#M D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diploma#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#M.B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#M.L.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#M.S#B.S#M.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#M.S#M.S#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Diploma#M.Sc./M.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           diploma#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#MA#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#Martial Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Master Cosmetologist 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma#Master of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Master of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#Master of Commerce#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#Master of Divinity Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Master of Fine Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Master of Human Services (M. H. S.) The M.H.S. is\\nan interdisciplinary degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Master of Medical degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Master of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Master of Public\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diploma#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Master of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Master of Science#Diploma#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#Master Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#Master#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Master`s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DIPLOMA#MASTERS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Masters Degree Masters#Bachelors Degree Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Masters of Art#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Masters#Bachelor Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Masters#Bachelors of\\nBusiness Management#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#Matric 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#Matriculated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Maturity Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#MBA of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diploma#MBA#MBA#graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#MCPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#MCSE#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           diploma#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diploma#MD degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Medical Billing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#MEGA SCOLE.\\n\\n Associate  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#Metric 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#MGA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diploma#Microsoft A+ Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Middle School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DIPLOMA#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DIPLOMA#National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#NCR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#No Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#NOVA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Nursing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#OND (Associate Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#OND#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#Operations development Program Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Optician Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#or Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Diploma#Ordinary National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma#P.A.C#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#PC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#PC Specialist Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Ph.D. (Doctorate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#Ph.D#Development. Ph.D#Diploma#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#PHYSIO THERAPY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Plumbing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#PMIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Post Graduation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#Post- graduated Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#Post-Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#Postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Postgraduate Diploma#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Postgraduate#DIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#POWER OF ENGINEERS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#Pre-University 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#Principles of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diploma#Pursing Degree#A.A Degree#A.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma#Pursue Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Diploma#Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#Regents Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Registered Nurse Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#Registered Nurse#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diploma#S.D. College\tB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#SAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diploma#SAT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           diploma#school's technical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Diploma#Scientific High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#Secondary School Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diploma#SECRET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Senior Secondary  school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#Studying 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#T.A.M#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diploma#Technical High School degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#TESST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diploma#TRAINING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diploma#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diploma#US 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Diploma#W.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Diploma#W.B.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DIPLOMA#Washington 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DIPLOMA#WASHINGTON D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Diplomacy#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diplomado 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             diplomas 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diplomas 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DIPLOMAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Diplomas /Degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           diplomas#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diplomas#Bachelor of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diplomas#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diplomas#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Diplomas#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Diplomas#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Diplomas#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Diplomate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DIPLOMATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Diploma� 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diplome d' etudes Universitaire general de droit DEUG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Diplome d'Ingenieur#Master of Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Diplome de Francais#Master of Science (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Diplome dIngenieur#Master of Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Dipl�me (MA#License (B.A. equivalent).  Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Dipl�me de Grande �cole (�cole Sup�rieure de Commerce de Paris)          Paris 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Dipl�me de Master (Master of Science)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Dipl�me de P�tisserie 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              dipolma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Dipolma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   52 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DIPOLMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Dipolma#A+ Certification#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DIPOLMA#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    dipolma#Obtained advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Dipoloma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Dipoma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Direct Ph.D#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Directing of Mass events\\nDegree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Director of Christian Education Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Director of Minority Events 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     DIRECTOR'S AWARD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dis 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Disadvantage Business Enterprise (LSDBE)#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Disasters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DISCHARGE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Discipleship Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Discipline of Interest 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Discontinued Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Dissertation Doctor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Distance Education Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Distance Learning Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Distinction. \\n \\nB.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DISTINCTIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Distinctive Culinary Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Distinguished\tGraduate#Bachelor\tof\tArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Distinguished Achievement Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Distinguished Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Distinguished Graduate Diploma#Graduate Diploma#Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Distinguished Graduate#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Distinguished Graduate#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Distinguished Graduate#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Distinguished Graduate#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Distinguished Graduate#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 District of Col. ? Master of Business AdministratiOn 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 District of Columbia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 District of Columbia          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      District of Columbia     Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           District of Columbia (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         District of Columbia Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             District of Columbia High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        District of Columbia Licensed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DIT (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DIT Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DIV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                             Division of Administration & Business#Master of Science#Master of Administrative Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Division of Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Division of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DIY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DLLR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                              DM#of Leadership University of\\nPhoenix Degree#Masters#Bachelor of Science#Associate of Arts#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DMC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DMD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DMIT#Doctor of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DMLT. (Diploma medical laboratory technician) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DMS#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DMS#DMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DMS#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DNC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DNF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DNP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DNP Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DNS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DO degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  344 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DOCTOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor    of    Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor   of   Medicine   (M.D.) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor   of   Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor   of   Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor   of   Philosophy   (Ph.D. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor   of   Philosophy   (Ph.D.) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor   of   Philosophy   (PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor   of   Philosophy#Postgraduate   Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor   of   Public   Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor (Master) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor and Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DOCTOR DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor Degree of Science#Master Degree of Science#Bachelor Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor Degree#Medical Degree of Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor Juris (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of  Dental Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of  Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of  Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of  Veterinary medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Acupuncture and Chinese Medicine (DACM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Allopathic Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Arts#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Arts#Master of Science#B.Sc.#Cairo, and Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Audiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Audiology (Au.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Behavioral Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Biological Sciences (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Business (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   81 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DOCTOR OF BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Business Administration - (D.B.A#Master of Business Administration (M.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Business Administration (D.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Business Administration (D.B.A#Master of Business Administration (M.B.A#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Business Administration (DBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Business Administration (DBA, PhD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Business Administration (DBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DOCTOR OF BUSINESS ADMINISTRATION (DBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Business Administration (DBA)#Diploma#Dip BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Business Administration (DBA)#Diploma#Dip BA#Master of Science (MSED)#Master of Science (MSE)#Bachelor of Science (BSEE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Business Administration (DBA)#Juris Doctor (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Business Administration (DBA)#Master of Busines Administration (MBA)#Bachelor of HND Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Business Administration (DBA)#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Business Administration (DBA)#Master of Business Administration (MBA)#Bachelor of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Business Administration(DBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Business Administration#D.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Business Administration#D.B.A#Master of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Business Administration#Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Business Administration#Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of Business Administration#Master of Business Administration#Bachelor of Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Business Administration#Master of Foreign Affairs#Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Business Administration#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Business Administration#Master of Science (M.S#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Business Administration#Master of Science#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Business Administration#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Business Administration#Master's Degree#Bachelor's Degree#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Business Administration#Master\\nof Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Business Administration#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Business Adminstration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Business and Administration#Master\\nof Engineering#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Business Management#Doctorate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Chiropractic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Chiropractic (D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Chiropractic and Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Chiropractic degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Chiropractic Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Chiropractic License 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Chiropractic Licensure 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Chiropractic Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Chiropractic, (D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Church Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DOCTOR OF COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Computer Science (DCS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Dental Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Dental Medicine (D.M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Dental Medicine (DMD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Dental Medicine (DMD)????????????????????????????????????????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Dental Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Dental Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Dental Surgery  (DDS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Dental surgery (DDS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Dental Surgery (DDS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Dental Surgery Dentistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Dental Surgery#Bachelor of Arts#Bachelor of Arts#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  115 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Education\t(Ed.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Education - Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Education (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Education (Ed. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Education (Ed. D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Education (Ed. D#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Education (Ed.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DOCTOR OF EDUCATION (ED.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Education (Ed.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Education (ED.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Education (Ed.D)#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Education (Ed.D)#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Education (Ed.D#Certificate of Advanced Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Education (Ed.D#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Education (Ed.D#Masters of Science#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Education (EdD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Education (EdD)#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Education Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Education degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Education degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Education Master of Education Bachelor of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Education Specializing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Education#Ed. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Education#Ed.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Education#Ed.D\\n\\n\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of Education#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Education#Higher Education#Higher Education#Doctorate#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Education#MA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Education#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Education#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Education#Master of Science#Bachelor of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                              Doctor of Education#Master of Science#Master of Public Administration#Master of Arts#Master of Art#Master of Business Administration#Master of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Education#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Engineering (D. Eng) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Engineering degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Engineering, KAIST#Master of Science, KAIST#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor Of Engineering#Master of\\nEngineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Engineering#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Fine Arts#Master of Fine Arts#MFA#Diploma#Bachelor of Fine Arts#BFA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Health Administration (DHA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Health Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Health Science (D.H.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Health Science Global Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Health Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Healthcare Administration#Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Human Biology#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Humane Letters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Infection Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Information Assurance (DIA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of International Business Administration (DIBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of International Business Administration (DIBA)#MBA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of International Public Policy (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Juridical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Juridical Science (S.J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Juridical Science#J.S.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Jurisprudence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   69 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Jurisprudence (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Jurisprudence degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Jurisprudence Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Jurisprudence Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Jurisprudence, JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Jurisprudence\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Jurisprudence#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Jurisprudence#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Jurisprudence#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Jurisprudence#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Jurisprudence#J.D#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Jurisprudence#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Jurisprudence#Master of Laws#Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Jurisprudence#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Jurispurdence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Jurispurdence#M.B.A#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Law (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Law (JD)#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of Law (JD)#Bachelor of Arts (B.A#Bachelor of Science#B.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Law (JD)#Bachelor of Science (BS)#Associate of Science (AS)#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Law (JD)#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Law (JD)#Masters#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Law (Juris Doctor - JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Law and Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Law#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Law#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Law#J.D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Law#J.D#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Law#J.D#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Law#J.D#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Law#J.D#Doctor of Law#J.D#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Law#JD#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Liberal Studies (DLS)#M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Management (candidate)          Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Management (D.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Management (DM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Management degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Management Degree#MASTER OF ARTS (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Management(DM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Management#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Management#Master of Arts#Bachelor of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Management#Master of Information Systems#Bachelor of Science#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Management#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Management#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Management#Master's Degree#Bachelor's\\nDegree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Materials Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Medical Science (D.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   doctor of medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  270 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor Of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DOCTOR OF MEDICINE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Medicine   (BS-MD combined degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Medicine (degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Medicine (M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DOCTOR OF MEDICINE (M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Medicine (M.D., Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Medicine (M.D.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Medicine (M.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Medicine (M.D) Internship (Pasentia) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Medicine (M.D)#Masters#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of medicine (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Medicine (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   48 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DOCTOR OF MEDICINE (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Medicine (MD) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Medicine (MD) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Medicine (MD)#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Medicine (MD)#Master of Science (MS)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Medicine & Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Medicine and Doctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of medicine degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Medicine degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Medicine Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DOCTOR OF MEDICINE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Medicine M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Medicine Program (M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Medicine, Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Medicine, M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Medicine, M.D#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Medicine, MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Medicine\\n(M.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Medicine\\nUndergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Medicine#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Medicine#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Medicine#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Medicine#Bachelor of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Medicine#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Medicine#Bachelor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Medicine#BS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Medicine#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Medicine#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Medicine#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Medicine#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Medicine#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Medicine#Postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of MedicineDoctor of MedicineDoctor of MedicineDoctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Ministry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Ministry (D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Ministry (D.Min 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Ministry (D.Min) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Ministry (D#Master of Divinity#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Ministry D. Min 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Ministry Degree#Master of Divinity Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Ministry#Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Ministry#Master of Divinity#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Musical Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Musical Arts (Ph.D. equivalent) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Neurobiology#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Nursing Practice (Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Nursing Practice (DNP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Optometry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Optometry Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Optometry Degree\\n\tBachelor's Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Organizational Leadership#Masters#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Osteopathic     Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Osteopathic Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Osteopathic Medicine (D.O 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Osteopathic Medicine (DO) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Osteopathic Medicine/Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of Osteopathy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  223 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Pharmacy (Pharm. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Pharmacy (Pharm.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Pharmacy (Pharm.D, R.Ph) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Pharmacy (Pharm.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Pharmacy (Pharm.D#Master of Business Administration (MBA)#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Pharmacy (PharmD) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Pharmacy degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Pharmacy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DOCTOR OF PHARMACY DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Pharmacy\\n\t\t\tMasters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Pharmacy\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Pharmacy\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Pharmacy#Bachelor of Health Administration & Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Pharmacy#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Pharmacy#Bachelor of Science#Bachelor of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Pharmacy#Pharm.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  829 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DOCTOR OF PHILOSOPHY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Philosophy\t\tDevelopmental 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy - Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Philosophy - Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Philosophy -Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Philosophy (A.B.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Philosophy (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Philosophy (Current) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy (D.Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Philosophy (Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Philosophy (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   57 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DOCTOR OF PHILOSOPHY (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DOCTOR OF PHILOSOPHY (PH.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Philosophy (Ph.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Philosophy (Ph.D) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Philosophy (Ph.D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of Philosophy (Ph.D#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Philosophy (Ph.D#Bachelor of Science (B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Philosophy (Ph.D#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Philosophy (Ph.D#Bachelor of Science (BS)#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Philosophy (Ph.D#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Philosophy (Ph.D#Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Philosophy (Ph.D#Doctor of Philosophy (Ph.D#MSc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Philosophy (Ph.D#FL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Philosophy (Ph.D#Graduate#Master s Degree#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Philosophy (Ph.D#IT#Ph.D.\\n\\n    Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Philosophy (Ph.D#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Philosophy (Ph.D#Master of Arts (M.A#Bachelors of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Philosophy (Ph.D#Master of Arts (MA)#Bachelor of Arts (BA)#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy (Ph.D#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Philosophy (Ph.D#Master of Science (M.S#Master of Science (M.Sc#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Philosophy (Ph.D#Master of Science#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy (Ph.D#Master s Degree#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy (Ph.D#Master s Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Philosophy (Ph.D#Master s Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Philosophy (Ph.D#Master s Degree#Graduate#Graduate#Master's degree#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy (Ph.D#Master s Degree#Master s Degree#Master s Degree#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy (Ph.D#Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy (Ph.D#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Philosophy (Ph.D#Master's Degree#of Engineering.\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Philosophy (Ph.D#Master#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Philosophy (Ph.D#Master#Bachelor of Business Administration (B.B.A#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Philosophy (Ph.D#Master#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Philosophy (Ph.D#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Philosophy (PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Philosophy (PhD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   76 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Philosophy (PHD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DOCTOR OF PHILOSOPHY (PHD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Philosophy (PhD) (candidate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Philosophy (PhD) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Philosophy (PhD), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Philosophy (PhD)#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Philosophy (PhD)#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Philosophy (PhD)#Degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Philosophy (PhD)#GIS)\\nDegree#Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Philosophy (PhD)#Graduate#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Philosophy (PhD)#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Philosophy (PhD)#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Philosophy (PhD)#Master of Science (M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Philosophy (PhD)#Master of Science (MS)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Philosophy (PhD)#Master of Science (MS)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy (PhD)#Master of Science (MS)#Bachelor of\\nScience (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Philosophy (PhD)#Master of Science (MS)#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of Philosophy (PhD)#Master of Science (MS)#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Philosophy (PhD)#Master of Science#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Philosophy (PhD)#Master's degree#Bsc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Philosophy (PhD)#Master#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Philosophy (PhD)#Masters of Science#Bachelor of Science#B.S#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Philosophy (PhD)#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Philosophy / Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Philosophy Aerospace Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Philosophy Biosciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Philosophy degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Philosophy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DOCTOR OF PHILOSOPHY DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Philosophy Degree (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Philosophy Degree (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of Philosophy Degree#Master of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Philosophy Degree#Master of Education Degree (M.Ed) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Philosophy Degree#Philosophy of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Philosophy HLTH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Philosophy MGMT#MBA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Philosophy Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Philosophy Ph.D ( Operations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Philosophy Ph.D (Operations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Philosophy PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy Student 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DOCTOR OF PHILOSOPHY, (PH.D#HIGHER EDUCATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Philosophy, ABD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               DOCTOR OF PHILOSOPHY, COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Philosophy: Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy. Graduate#Master of Theological Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Philosophy/ABD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Philosophy/Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Philosophy\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Philosophy#Baccalaureate#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Philosophy#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Philosophy#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Philosophy#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Philosophy#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Philosophy#Graduate#Master of Science#Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Philosophy#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DOCTOR OF PHILOSOPHY#HIGHER EDUCATION#ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Philosophy#higher education#Master of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of Philosophy#M.D., Ph.D.\\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Philosophy#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Philosophy#Master of Arts degree#Doctor of Philosophy degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of Philosophy#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Philosophy#Master of Arts#Bachelor of Arts#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Philosophy#Master of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Philosophy#Master of Arts#Bachelor of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Philosophy#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Philosophy#Master of Business Administration#Bachelor of Science#Associate\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Philosophy#Master of Business Administration#Master of Education#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Philosophy#Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Philosophy#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Philosophy#Master of Education#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy#Master of Education#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Philosophy#Master of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy#Master of Philosophy#Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Philosophy#Master of Philosophy#Master of International Affairs#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Philosophy#Master of Public Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Philosophy#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Philosophy#Master of Science degree#Doctor of Philosophy degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Philosophy#Master of Science degree#Doctor of Philosophy\\n   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Philosophy#Master of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of philosophy#Master of Science#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Philosophy#Master of Science#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Philosophy#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Philosophy#Master of Science#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy#Master of Science#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Philosophy#Master of Strategic Studies#Master of Business Administration#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Philosophy#Master of Urban Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy#Master#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Philosophy#Masters Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy#Masters of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Philosophy#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Philosophy#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Philosophy#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy#PhD#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Philosophy#PhD#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Philosophy#PhD#Bachelor of Science#B.S#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Philosophy#PhD#M. Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Philosophy#PhD#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Philosophy#PhD#Master of Arts#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of Philosophy#PhD#Master of Arts#MPA#Bachelor of Science (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Philosophy#PhD#Master of Business Administration#MBA#Doctor of Philosophy#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Philosophy#PhD#Master of Science (MS)#MBA#Bachelor of Engineering (B.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Philosophy#PhD#Master of Science#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of Philosophy#PhD#Master of Science#MS#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Philosophy#PhD#Master of Science#MS#Master of Science#MS#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Philosophy#PhD#Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Philosophy#S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Philosophy#U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Philosophy#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of PhilosophyJune 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Philosphy (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of physical Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Physical Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Physical Therapy        Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Physical Therapy (DPT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Physical Therapy degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Podiatric Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor of Podiatric Medicine (D.P.M.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Podiatric Medicine (DPM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Podiatric Medicine, (D.P.M) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Podiatric Medicine\\nBachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Psychology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Psychology, Psy. D#Masters#M. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Psychology#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Psychology#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Public Administration (D.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Public Administration (DPA)#Bachelor of Laws (LLB) Hons#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                     Doctor of Public Administration (DPA)#Bachelor of Laws (LLB) Hons#Master of Arts#Bachelor of Arts#Diploma#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor of Rhetoric#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   66 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DOCTOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Science (D.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Science (D.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Science (D.Sc#Doctor of Science#Master of Science (M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                          Doctor of Science (D.Sc#Doctor of Science#Master of Science (M.Sc#Master\\nof Science#Bachelor of Science (B.Sc#Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Science (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Science (Sc.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Science (Sc.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Science Sc.D. (Ph.D. Equivalent) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Science\\nDoctor of Philosophy\\nMaster of Philosophy\\nBachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Science#Juris Doctor#Master of Science#Bachelor of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Science#Phd 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Science#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor of Sciences (PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Sciences (PhD#Master of Sciences (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor of Social Welfare 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Software Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of Strategic Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of Strategic Leadership (DSL) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor of Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor of Theology (Th.D.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctor of Veterinary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor of Veterinary Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor of Veterinary Medicine (DVM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Veterinary Medicine (DVM) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor of Veterinary Medicine#Master of Veterinary Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of Veterinary Medicine#Masters of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of Veterinary\\nMedicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of\\nBusiness Administration(DBA)#MBA#MBA#MBA#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctor of\\nPhilosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor of\\nPhilosophy\\n(Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor of\\nPhilosophy#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor Veterinary Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctor' s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      doctor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor's Help (Phlebotomy) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor's of Philosophy#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor#B. S#Master#Master#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DOCTOR#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor#Bachelor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                        Doctor#Doctorate of Computer Science#Master of Science#Master of Arts#Bachelor of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor#Doctorate#Masters of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor#doctorate#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DOCTOR#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor#Higher Education#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                doctor#Honor Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctor#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor#J.D#Master of Public Administration (M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctor#M.Sc#M.Sc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor#Master \\n\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor#Master of Divinity#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctor#MASTER OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctor#Master's of Science#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor#Master#Master#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctor#Masters of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctor#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctor#Pharm. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctor#Pharm.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctor#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctor#PhD#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctor#POST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor#Psy. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctor#Psy.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctoral 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctoral  of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctoral Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctoral Degree (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctoral Degree (PSYD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctoral Degree of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctoral Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctoral Degree#Doctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctoral Degree#Ed.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctoral Degree#M.S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctoral Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctoral Degree#Masters Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctoral Degree#Masters Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctoral degree#MS degree#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctoral of Dental Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctoral of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctoral of Management (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctoral of Management#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctoral of Medicine Degree#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctoral of Medicine Degree#M.D#Degree#Master of Health Sciences#M.H.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctoral of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctoral of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctoral of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctoral of Science (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  431 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DOCTORATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctorate   of   Dental   Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctorate  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctorate - Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctorate (D.Sc#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate (Doctor of Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate (Ed.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctorate (Ph.D.) degree#BS/MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctorate (Ph.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctorate (Ph.D)#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate (Ph.D#Post-Graduate Diploma#Master of Sciences#Bachelor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate (PhD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctorate (PhD) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate (PhD) of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate / PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate \\nDoctorate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctorate Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctorate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctorate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   46 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctorate Degree - D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctorate Degree (D. Min 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctorate Degree (Ph.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctorate Degree (Ph.D#Master of Science degree (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctorate degree of medicine (M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctorate Degree of Medicine (M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctorate Degree- Ph.D#Master of  Science-MBA#Bachelor of Science#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctorate degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctorate Degree#DBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DOCTORATE DEGREE#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate Degree#Doctorate, (Doctor of Business Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctorate Degree#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctorate Degree#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      doctorate degree#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctorate Degree#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctorate Degree#Masters Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Doctorate Degree#Masters of Business Administration degree#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate degree#MBA#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctorate Degree#Ph.D ( In 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctorate degree#PhD#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate Degree#PhD#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate Doctorate degree#Masters Degree Masters\\ndegree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctorate Higher Education#DC Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate in Audiology (Au.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctorate In Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate in Doctor of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate in Medicine (M.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate in Nutritional Biochemistry & Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctorate in Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate in Theology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctorate of Arts#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctorate of Audiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctorate of Audiology, Au.D#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctorate of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctorate of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   44 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DOCTORATE OF BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate of Business Administration (D.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctorate of Business Administration (DBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                Doctorate of Business Administration (DBA)#Masters Degree#Bachelors Degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                           Doctorate of Business Administration (DBA)#Masters of Education (M.Ed#Ed.S#Terminal Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DOCTORATE OF BUSINESS ADMINISTRATION (PHD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctorate of Business Administration(DBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate of Business Administration\\n\\nM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctorate of Business Administration\\nM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                       Doctorate of Business Administration#Business Administration#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctorate of Business Administration#Graduate#M.S#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctorate of Business Administration#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                      Doctorate of Business Administration#Master's Degree#Master of Science#Bachelor's Degree#Bachelor of Science#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate of Business Administration#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                       Doctorate of Business Administration#Masters of Business Administration#MS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctorate of Chiropractic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctorate of Clinical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctorate of Computer Science (DCS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate of Counseling Psychology Degree ABD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctorate of Counselor Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate of Dental Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate of Dental Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate of Dental Surgery (D.D.S.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctorate of Dental Surgery (DDS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctorate of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   33 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate of Education (Ed. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate of Education (Ed.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate of Education (EdD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctorate of Education Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctorate of Education Administration and Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate of Education, (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate of Education#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate of Education#Ed. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate of Education#Ed.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctorate of Engineering Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate of General Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctorate of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctorate of Health Science#Masters#MPA Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate of Human Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctorate of Human Service 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate of Humane Letters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctorate of Information Assurance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctorate of Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate of Juris Prudence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctorate of Jurisprudence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate of Jurisprudence (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctorate of Law (JD)#BS#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctorate of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctorate of Management (D.M)#Master's degree#Degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate of Management (DM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate of Management#Masters of Business Administration#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctorate of Medical Dentistry (DMD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate of Medical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctorate of Medical Science (PhD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctorate of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctorate of Medicine (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate of Medicine Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctorate of Medicine\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctorate of Medicine#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctorate of Ministry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctorate of Musical Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctorate of Musical Arts, D.M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctorate of Naturopathic (ND) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctorate of Naturopathic Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctorate of Occupational Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctorate of Optometry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctorate of Osteopathic Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctorate of Pharmaceutical Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctorate of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctorate of Pharmacy (Pharm D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctorate of Pharmacy (Pharm.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate of Pharmacy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctorate of Pharmacy#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctorate of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  111 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate of Philosophy (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   DOCTORATE OF PHILOSOPHY (PH.D.) CANDIDATE#MASTERS OF BUSINESS ADMINISTRATION (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate of Philosophy (PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctorate of Philosophy (PhD)#Doctorate of Philosophy (PhD)#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                  Doctorate of Philosophy (PhD#Masters of Business Administration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctorate of Philosophy (U.S. Equivalent Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Doctorate of Philosophy Aerospace Engineering#Masters of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctorate of Philosophy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate of Philosophy#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate of Philosophy#Bachelor of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate of Philosophy#I. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate of Philosophy#J.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctorate of Philosophy#Master of Engineering#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctorate of Philosophy#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate of Philosophy#Master of Science#Master of Public Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate of Philosophy#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctorate of Philosophy#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate of Philosophy#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate of Physical Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate of Physical Therapy#Graduate#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctorate of Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctorate of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctorate of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctorate of Psychology#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctorate of Public Administration#Master of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctorate of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doctorate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctorate of Science (Anticipated) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctorate of Science (D.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctorate of Science (PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate of Science#Master of Science#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctorate of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Doctorate of Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doctorate of Veterinary Medicine (DVM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate PhD#Bachelor's Degree\\nBachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctorate Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctorate Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctorate work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctorate, (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctorate, D.O 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctorate, DD#Master's Degree#Masters of Divinity#Bachelors Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate, Juris Doctor#Bachelors Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctorate:  D. Min. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctorate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctorate/ Post Graduate (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctorate/Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctorate#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctorate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate#D.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctorate#Doctor of Chiropractic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate#Doctorate#Doctor of Medicine Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate#Ed. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctorate#Ed.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           doctorate#higher education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctorate#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Doctorate#Higher Education#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctorate#Juris Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate#LLB#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctorate#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctorate#M.B.A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate#M.P.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctorate#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate#M.S#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doctorate#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             doctorate#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Doctorate#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctorate#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctorate#Master of Science#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate#Master of Science#Bachelor of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Doctorate#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate#Master's Degree#Bachelor Science#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Doctorate#Master's Degree#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                       Doctorate#Master's degree#Master's degree#MBA#Bachelor of Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Doctorate#Master's#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doctorate#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         doctorate#Masters of Arts#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate#MASTERS#Bachelor of Science#B.S#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doctorate#ME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doctorate#Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Doctorate#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctorate#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Doctorate#PhD#PhD#Doctorate#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Doctorate#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DODS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DOE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Dorothea B. Lane 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Double BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Double Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Double Degree BS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Double Degree#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Double Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                DOUBLE DEGREE#BACHELOR OF SCIENCE#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Double Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        DPA - Doctor of Business Administration#MSc#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DPAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DPCS - Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DPCS (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DPCS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         DPDT Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DPT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DPT, Doctorate of Physical Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dr. rer. nat. (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Dr. rer. nat. (Ph.D#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Dr.Philos. (diploma#B.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Dr.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Drafting and Architectural Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Drafting and Design Graduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Drafting Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Drafting Design Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Drafting Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Drafting with Autocad Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Draftsman Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DRIVER'S LICENSE#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Droit. (Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          DrPH\tDoctor of Public Health#Master of Public Health (MPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DSL� Doctor of Strategic Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DSO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 DSW  (Doctor of Social Work)  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DSW (Doctor of Social Work) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dte 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DTE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DTI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Dual BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Dual Bachelors Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Dual Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Dual Degree A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   DUAL DEGREE MASTER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Dual Degree Masters Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Dual Degree#B.A and B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dual Degree#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Dual Degree#Juris Doctor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                   Dual Degree#Master of Business Administration (MBA)#Bachelor Of Business Administration#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                              Dual Degree#Master of Business Administration & Master of Human Resource Management#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Dual Degree#Master of Business Administration and Master of Public Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Dual Degree#Master of Science#Masters of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dual Juris Doctor (JD) & Master#MPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Dual Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Dual Master of Business Administration (DMBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Dual Master?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Dual Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Dual Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dual Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Dual Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     DUAL MBA AND M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       DUAL MBA#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             DUCATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ducktorate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Duel Degree B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Duel Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Duel Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Duel Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Duel Masters Degree#MBA#Bachelor of IT#Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Duel MBA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Duration of Study#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DUT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Duval High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DVM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DVM (Doctor of Veterinary Medicine) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DVM (higher Bachler degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     DVM. (Doctor of Veterinary Medicine)#M Sc Honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DVS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dynamics of International Terrorism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   E-Commerce Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                E-MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  E.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            E.A.B.J.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      E.A.C.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             E.D.A Certified Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                E.D.G 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         E.E. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                E.L.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              E.M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           E.M.B.A#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       E.M.L#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                E.M.O 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            E.N.S.A.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                E.O.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  E.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       E.S.L. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  E.U 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                E#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              E#B.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Early Childhood Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Early Childhood Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Early Graduate#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Earned A+ Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Earned Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Earned Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EARNED AN ASSOCIATE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Earned Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Earned Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Earned bachelor of medicine and bachelor of surgery (M.B.B. CH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Earned Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Earned degree#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Earned Degree#Bachelor of Exercise science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Earned Degree#Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Earned Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       EARNED DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Earned High Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Earned high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Earned High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Earned International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Earned International Bacclaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Earned Master Degree of Internal Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Earned#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Earning degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                EASDA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         EASL diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ECD#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ECE Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ECEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ECFMG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ECFMG#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        eCommerce Administration, AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ECON#INTERMEDIATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Economic Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ECONOMICS          MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Economics (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ECONOMICS, B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ECONOMICS#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Economy of Transition; International Business   Degree#Masters of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ECPI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ECPI of Richmond, Virginia Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ECPI#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ECTT#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ECU MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ed.   M. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ed. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ed. D Doctorate - Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ed. M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ed. M. Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ed. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ed. S#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ed.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  126 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ED.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ed.D Doctor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ed.D Doctorate of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ed.D, Doctor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ed.D.\tDoctor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ed.D. (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ed.D. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ed.D. Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ed.D. Doctor of Education#M.A. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ed.D. Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ed.D. TESOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ed.D.) Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ed.D.) Administration (Research and statistical management of data) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Ed.D.) Administration (Research and statistical\\nmanagement of data) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Ed.D.) Administration (Research and\\nstatistical management of data) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ed.D#20059 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ed.D#A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ed.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ed.D#Doctor of Education (Ed.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ed.D#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ed.D#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ed.D#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ed.D#M.A#B.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ed.D#M.A#M.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ed.D#M.ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ed.D#M.Ed#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ed.D#M.Ed#B.S.E.          PAGE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ed.D#M.S.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ed.D#M.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ed.D#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ed.D#Master Education Administration, (M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ed.D#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ed.D#Masters#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ed.D#matriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ed.D#MS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ed.D#MS#MS#MS#MS#MS#MS#MS#MS#BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ed.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ED.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ed.M#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ed.M#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ed.M#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ed.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ed.S. /M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ED.S#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ED.S#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ed.S#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ed.S#M.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ed#B.S#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ed#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EDC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EDD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            EdD (Doctor of Education) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EDI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EDS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EDU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             EDUATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Educ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            EDUCATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Education\tJuris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Education ...Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      EDUCATION (M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Education and Degree#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Education BS#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Education Degree(s) or Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Education Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Education Diploma (G.E.D#HVAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               EDUCATION Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        EDUCATION Juris Doctor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     EDUCATION Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               EDUCATION Ph.D#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Education Specialist Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  education\\n\\nDoctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     EducationA.A. Applied Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Educational Administration Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Educational Degree (Latest first)#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Educational Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Educational Specialist Degree#Ed. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            EDUCATIONAssociate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                EducationAssociate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          EducationAssociates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        EducationB. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        EDUCATIONB. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         EducationB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         EDUCATIONB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         EducationB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         EDUCATIONB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     EducationB.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     EDUCATIONB.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    EducationBachelor of Applied Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            EducationBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            EDUCATIONBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     EducationBachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          EducationBachelor of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       EducationBachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         EducationBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         EDUCATIONBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    EducationBachelor of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      EducationBachelor of Science#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    EDUCATIONBachelor of Science#Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EducationBachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EducationBachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                EducationH.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        EDUCATIONM. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     EducationM.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         EDUCATIONM.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         EDUCATIONM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     EDUCATIONM.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   EducationM.S#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EducationM.S#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EDUCATIONM.S#MD#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 EducationMaster Degree#Masters Degree#B.S. \\n\\nM.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EducationMaster of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EducationMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EDUCATIONMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      EDUCATIONMaster of Business Administration(MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EducationMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EDUCATIONMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EDUCATIONMASTER OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       EDUCATIONMaster of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     EDUCATIONMasters of Business Administration#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              EDUCATIONMasters of Science#ProgressBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       EDUCATIONMS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 EducationUniversity of Maryland\\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EducationUniversity of Memphis Master of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EE Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EEI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EEO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               EFL#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               EHR Specialist Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EIT#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EJD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EKG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       EKG#Phlebotomy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          El Salvador 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                    Elaboraci�n de cartera de clientes.\\n*Prospectaci�n  y cierre de ventas\\n*Presentaciones de programas de ventas 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                         Elaboraci�n de formatos \\n*Elaboraci�n de organigrama y perfiles de puesto\\n*Elaboraci�n de minutas reuniones de patronato 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Elaboraci�n de planes de marketing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ELAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ELC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ELECTRICAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ELECTRICAL ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Electrical Engineering Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Electrical Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Electrician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Electrician Diploma#Heating Technology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Electrician's Course (Diploma)#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Electronic Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Electronic Engineer Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Electronic engineering degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Electronic Engineering Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Electronic Systems Technician (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Electronic Technician Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Electronic Technician Degree#Diploma#Business Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Electronic Technology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Electronics\t\tA.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Electronics (Advance Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Electronics and Computer Repair Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Electronics and Programming (diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Electronics Computers Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Electronics Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Electronics Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Electronics Program (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Electronics Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Electronics Technicians Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Electronics Technologies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Electronics technology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ELEMENTARY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Elementary Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Elementary Education (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Elementary Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Elementary Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ELITE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ELL Endorsement & Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ELLE Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 EMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         EMBA Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EMC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               EMERGE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Emergency Medical Tech.  (EMT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Emiss�o de Ordem de Compra\\n\\n   Confec��o de Manuais de Opera��o 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 EMPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Emphasis 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Emphasis#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EMPLOYMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EMT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Energy Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Energy policy graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Eng. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Eng#HND 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Engenheiro de Soldagem 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Engineer (Master) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Engineer degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Engineer Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Engineer Diploma#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Engineer s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Engineer s Degree#MINOR#High school diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Engineer's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Engineer's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Engineer's degree#Diploma#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           engineer's Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Engineering\t\t        Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Engineering A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ENGINEERING A.S.E\\n   DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Engineering and Applied Science Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Engineering and Applied Science#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Engineering Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Engineering Associate of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Engineering Associates of Science#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Engineering Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Engineering Diploma (Master degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Engineering Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Engineering Major A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Engineering Master's Degree#Bachelor's\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Engineering Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Engineering Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Engineering Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Engineering, (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ENGINEERING. Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Engineering#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ENGINEERING#BACHELOR OF\\nSCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Engineering#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Engineers Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      England Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ENGLISH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           English BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      English BA Degree#AAS degree#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       English degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       English Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              English Language Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           English Translation Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Engr 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ENSAI#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ENSSPICAM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Entered Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Enterprise Network Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Enterprise Network Professional degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Enterprise Network Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Entrepreneurship 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ENTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          EQUIPMENT'S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Equiv.of Msc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Equivalence Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Equivalence Diploma#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Equivalence of Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Equivalency Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  EQUIVALENCY DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Equivalency Diploma (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Equivalency Diploma \\nG.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Equivalency of Master of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Equivalent Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            equivalent Diploma Gained 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Equivalent of Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Equivalent of B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Equivalent of BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Equivalent of Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ERASMUS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Erba.\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Eric D. Coleman 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ERP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ERP's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ERROR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ERROR#Military Course Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Es.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ESCP#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ESCP#M. Sc. MEB (Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ESI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ESI#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ESL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ESL and External Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ESL Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        ESL, Computer Diploma#Diploma#GED#Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ESL. Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ESL#Second Language Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ESP Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Espana - D.E.L.E. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Espa�ola de Inmigraci�n de BAYONNE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Especializa#Especializa 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ESPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ESSEC Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ESSEC Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Essentials of Business Intelligence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Essentials of Project Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  est. Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Establishment          Degree#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Establishment Degree#B.Sc#M.Sc#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Estagi�rio de Engenharia El�trica 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Esthetic diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Esthetician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ETB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ethiopia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ethiopia (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ETHIOPIA DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ethiopia. \\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 EUIC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               European Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     European Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             European Masters#Masters#B.Sc#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            European Secretary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Evaluation of Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Evaluation of Bachelors of Business administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Evaluation of Diploma#Master's degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Evangelism (Master of Arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Evening Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Evening MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Events Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Events Management and Hospitality Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             examsHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                EXCEL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Excel (intermediate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Excellence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Excellent Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Excellent Graduate#Bachelor of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Exceutive Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Exchange 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Exec MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Exec. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Executive 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Executive   MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Executive Administration Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Executive Business Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Executive Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Executive Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Executive Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Executive Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       EXECUTIVE GRADUATE CERTIFICATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Executive Graduate#Graduate#Masters of Business Admin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Executive Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Executive Juris Doctorate (EJD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Executive Management Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Executive Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Executive Master of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Executive Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                         Executive Master of Business Administration (EMBA)#Bachelor of Arts (B.A#Undergraduate#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Executive Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Executive Master of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Executive Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Executive Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Executive Master Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Executive Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Executive Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Executive Master's degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Executive Master's degree#Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Executive Master's#Corporate Master of Business Administration#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Executive Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Executive Masters (FIA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Executive Masters (MS-MIT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Executive Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         EXECUTIVE MASTERS OF BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Executive Masters of Business Administration (EMBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Executive Masters of Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Executive Masters of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Executive Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Executive Masters#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Executive Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  252 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        EXECUTIVE MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Executive MBA (EMBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Executive MBA B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Executive MBA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Executive MBA Graduate#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Executive MBA)   \\nDegree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Executive MBA#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Executive MBA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Executive MBA#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Executive MBA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Executive MBA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Executive MBA#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Executive MBA#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Executive MBA#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Executive MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Executive MBA#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Executive MBA#Bachelor's of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Executive MBA#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     executive MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Executive MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Executive MBA#BS#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Executive MBA#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Executive MBA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Executive MBA#Graduate#ICD.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Executive MBA#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Executive MBA#MA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Executive MBA#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         executive MBA#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Executive MBA#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Executive MBA#Master of Sciences Degree#High-school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Executive MBA#Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Executive MBA#Master#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Executive MBA#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Executive MBA#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Executive MBA#Masters#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Executive MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Executive MBA#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Executive MBA#MS#BS#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Executive MBA#PE#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Executive MBA#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         EXECUTIVE MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Executive Post Graduate Diploma#Bachelors of Engineering (B.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Executive Post Graduate#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Executive Secretarial Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Executive Secretarial Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Executive Secretary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Executive Secretary Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Executive Secretary's Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Executive, Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Executive. MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Exercise Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Exercise Science A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          EXHIBITIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             EXPECTED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Expected Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Expected Bachlor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Expected degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Expected Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Expected Degree#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Expected Degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Expected Degree#Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Expected#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         EXPECTED#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         EXPECTED#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Expecting Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Expecting BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Expecting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Expecting Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Expecting Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Expecting Masters in IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           EXPERIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         EXPERIENCE\t\t\t\tDEGREE#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       EXPERIENCE          DEGREE#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            EXPERTISE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EXPIRES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Export Outreach Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Extended Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Extended Diploma#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Extended Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Extension of Masters of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      External Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  External Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     External Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             External Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     External Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 External Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               EXTERNSHIPS\tDoctor of Optometry, (O.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                EXTRA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         F. A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                F.A (Faculty of Arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                F.A. (Fellow of Arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                F.A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          F.A.A#M.O.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              F.A.E.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       F.A.L.S.S#Bachelor of Arts#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          F.A.M.A.D.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          F.G. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                F.G.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 F.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   FA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Facilities Management Graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Facility of engineering BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Facultad de Ciencias Pol�ticas 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Faculty of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Faculty of Arts (FA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Faculty of Business and Economics (FBE) Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Faculty of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Faculty of International Business and Relations  \\nSpecialist degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Faculty of Linguistics & Applied Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Faculty of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Faculty of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Faculty of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FACULTY OF SCIENCE ECONOMIC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Faculty of Science#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Faculty of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Faculty of Science#M.E.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FAIRFAX 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Fairfax Virginia BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       fairfax, va\\nbachelor of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 FALL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             FALL#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             FALL#SPRING#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  FALL#SPRING#Juris\\nDoctor#FALL#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Family Medicine Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 FAMU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Farmer Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FARMINGDALE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Fashion Business Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Fashion Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Fashion Design Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Fashion Retailing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Faso Medical Doctor Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         FBLA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  FCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                FCC License / Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                FCC License & Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FCC#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 FCCJ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  FDA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             February 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    February. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             FEBURARY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               FELLOW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           FELLOWSHIP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 FEMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           FFA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     FFA State Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Field of Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fields of Study Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Film and Media Arts BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FINANCE B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Finance Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FINANCE Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           FINANCE#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Fine Art B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Fine Arts Education degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Finished Half of Computer Network Systems Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Finishing MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Fire science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Fire Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Firearms School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         First Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  First Degree#Bachelor of Life Sciences with Honours 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 First Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   First Level Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    First part of M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fl.   Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fligh Attendant Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         FLMI Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FLORIDA B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                FLORIDA, (ONLINE)#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   FloridaB.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           FloridaHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   FLSchool of Information StudiesBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  FNP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             FNP (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                FOCUS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Focus of studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Focusing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     FOOD HANDLER'S LICENSE#BARTENDER'S CERTIFICATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         FOOD SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         FOR A DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             FOR SCIENCE & TECHNOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FORCE A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Foreign medical\\ngraduate#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Forensic Psychology    Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                FORENSIC PSYCHOLOGY ASSOCIATES DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Forensic Psychology Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 formation Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Former 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Former Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                               formula��es de tarifas e \\nelaborando relat�rios de acompanhamento de demanda de grandes consumidores 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FORTRAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Foundation Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Foundation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Foundation of Consumer Lending School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Foundation of Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Foundation of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Foundations of Banking Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Foundations of Business Analysis 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Fourth quarter of graduate#Master of Science and Technical Intelligence Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Fourth Year Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  FPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Francisco#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               FRCSEd 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        FRCSEd#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               FRCSEd#Master#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fred. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    French and Lebanese Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 French Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 French Baccalaureate Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            French Baccalaureate(High school Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                             French Baccalaureate(High school\\nDiploma)????????????????????????????????????????????????????????????????????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             French Baccalaureate#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        French Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       French diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           French High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                French IB diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              French Language Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              French Major Diploma#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   French post Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       French Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               French-American Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Friendly High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 From 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 FROM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Frontiers of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  frostburg, md\\nbachelor of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     FSc (Fundamentals in Science) Degree#A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  FSK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  FSU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   FT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        FULL CHARGE BOOKKEEPING DIPLOMA#Online Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Full Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Full International Baccalaureate (IB) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Full Sail A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Function of Temperature. B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FUNDAMENTAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Fundamental Banking Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Fundamental of HV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Fundamentals of Banking Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Fundamentals of Data Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      furls Doctor /Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Further graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Future Degree#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            G. C. \\nDoctorate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              G. E. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      G. E. D#G. E. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      G.A. (Graduate degree#M.A. (Graduate degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          G.A#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     G.C.E Advanced Level Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         G.C.E. Advance Level Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       G.C.S.E. (high school diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               G.E, D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                g.e.d 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  173 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             G.E.D    High School Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        G.E.D aquired 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      G.E.D completed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        G.E.D diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        G.E.D Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       G.E.D Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            G.E.D high school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                G.E.D High School Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       G.E.D Obtained 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         G.E.D Program: G.E.D diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     G.E.D. / Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     G.E.D. and Culinary Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       G.E.D. diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       G.E.D. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               G.E.D. High School Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    G.E.D.certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      G.E.D#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                G.E.D#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               G.E.D#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        G.E.D#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            G.E.D#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    G.E.D#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                G.E.D#High School Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              G.E#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                G.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            G.M.D.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      G.M#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         G.N. Khalsa Computer Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     G.N.Khalsa Computer Diploma#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  G.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GA. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Gaithersburg MD#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Gaza 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       GCE 'A' Levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GCE 'O' level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GCE 'O' LEVEL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GCE 'O' LEVEL (DIPLOMA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GCE 'O' Level#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       GCE 'O' Levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GCE A level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GCE A Level, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GCE A Levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GCE A' Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GCE Advanced Level Certificate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GCE O level#Business studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GCE O' Levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GCE O' Levels#GCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     GCE O/Levels Diploma#GCE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GCE Ordinary Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GCE. A,level (high school diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GCE/O level Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GCE#11th#12th#11th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GCE#A levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       GCE#Bachelor of Engineering (BEng)#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GCE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GCE#GCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GCSE's: 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             GCSE's#B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GCSE#O Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GDIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GDIT#GDIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GEA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Gebre Yintso (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ged 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ged 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1492 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             GED          Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GED          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GED  Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GED / high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             GED and Clerical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      GED Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GED Certificate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GED Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GED Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GED diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GED Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   70 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GED DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     GED Diploma#Associate's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GED Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     GED Diploma#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GED Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GED Diploma#Grade 12th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GED diploma#Grade 12th) ????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GED Equivalency & ESOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GED High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GED High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GED HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GED High School Diploma#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GED High School Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GED/Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GED/Diploma\\n          Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GED#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GED#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GED#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GED#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GED#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GED#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GED#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GED#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GED#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             GED#Bachelor Of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GED#bachelor's#master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GED#Beauty Culture Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GED#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GED#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GED#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GED#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GED#Diploma#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ged#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GED#Ged 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GED#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      GED#GED Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GED#GED#GED#GED#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GED#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GED#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GED#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GED#High School Diploma#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GED#High School Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GED#High School Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GED#HIGHER DIPLOMA#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GED#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       GED#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GED#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GED#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GED#Master Travel 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GED#MEDICAL ASSISTANT DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GED#Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ged#seeking GED Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GED#TRAINING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GED#Type and Year of Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GED#UDC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Gemologist Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GEMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Gen Ed. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              General 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   General  Education  Diploma  (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                General (high school) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              General Academic Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             General academic diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            General and Vocational (Business) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            General Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           General BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   General Banking Diploma & Consumer Lending Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  General Business curriculum Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              General Business degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             General Business Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                General Course Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           General Curriculum Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       General degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       General Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               General Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   General degree#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      General Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  182 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      GENERAL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              General Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             General Diploma#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          General Diploma#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          General Diploma#UMUC#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GENERAL DIPOLIMA\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           General Eduacation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    General Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          General Education - Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          General Education (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             General Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   41 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       General Education Degree (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            General Education Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  148 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    General Education Diploma (G.E.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      General Education Diploma (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  General Education Diploma (GED)#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               General Education Diploma and training 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    General Education Diploma Awarded 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 General Education Diploma Coursework 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    General Education Diploma Pending 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   General Education Diploma..  (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       General Education Diploma(GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    General Education Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         General Education Diploma#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           General Education Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GENERAL EDUCATIONAL DEVELOPMENT (G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          General Educational Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           General Equivalence Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    General Equivalency  Degree (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           General Equivalency Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     General Equivalency Degree (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   General equivalency degree Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   General Equivalency Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          General Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   64 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   General Equivalency Diploma (G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  General Equivalency Diploma (G.E.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    General Equivalency Diploma (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   General Equivalency Diploma (GED)#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                General Equivalency Diploma (GED)#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 General Equivalency Diploma Achieved 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       General Equivalency Diploma#DC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               General Equivalency Diploma#Principals of Marketing AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    General Equivalent Degree (G.E.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     General Equivalent Diploma (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             General Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          General High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GENERAL HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   General HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            General Mechanics Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             General requirements High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             General requirements/High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              General Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          General secondary education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          General Secondary Education Certificate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      General Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  General studies          HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GENERAL STUDIES A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          General studies and Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               General studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               General Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           General Studies Degree#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              General Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  103 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              General Studies Diploma#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        General Studies/Assoc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              General Studies#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             General Studies#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      General#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Generalized Educational Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Generalized Equivalency Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GEO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Geo technology & Geoinformatics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Geography (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Geography & Regional Planning    (BS. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Geography degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Geology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GEOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GEOLOGY BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              GEORGE'S CAMPUS#Bachelors's of  Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Geospatial Intelligence Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 German Baccalaureate and Persian High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      German State Diploma#Associates of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   German State Diploma#BS#Associates of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Germantown & Rockville MD#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Germany 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Gerneral Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GG Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ghana (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GhanaBachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Global Affairs B.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Global E.M.B.A#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GLOBAL EXECUTIVE MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Global MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Global Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Global Masters of Arts#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Global MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GMBA (Global Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GMU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             GMU MBA#Master's Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GMU MBA#Masters Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GMU's WOC#International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GMU#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GN diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GNA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GNA/CNA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GNA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GNA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GNIIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GNIIT Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       GNIIT, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       GNIIT#BS#B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GNIIT#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GNVQ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GNX#Advanced PG Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Got Doctor of Veterinary Medicine (DVM) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Gourmet Cooking Degree          Culinary Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Government Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Government Post Graduate#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Governor's Advanced Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Governor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Governor's diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Governor's Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Governor's School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Governor's Seal Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Governor's#Governor's Seal Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Governors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Govt Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Govt. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GPPA#USPAP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GPR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GQ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GRAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Grad Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Grad. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             GRAD#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Gradate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Gradated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Grade 10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             grade 11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Grade 11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    grade 11#grade 12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             grade 12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Grade 12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             GRADE 12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Grade 12 Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Grade 12#Grade 11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Grade Twelve Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Grade:  12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Grade: 12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 3704 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             GRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   75 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate          Dorothy B. Lane 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate    Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate    High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate   Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate  Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate _ Diploma Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate - Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate ( Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate (Masters) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate (MPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            graduate (O.S.S.D earned) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate [ Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate / Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             graduate & post graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate & Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate and Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate B.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate Business Studies#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 graduate certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  245 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GRADUATE CERTIFICATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate certificate - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate Certificate - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate Certificate -- 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate Certificate * 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate Certificate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate Certificate of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate Certificate- 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate Certificate, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate Certificate: 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate Certificate:#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate Certificate#A+ Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate Certificate#AFFILIATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate Certificate#and Law Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate Certificate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                graduate certificate#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate Certificate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate Certificate#Bachelor of Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              graduate certificate#bachelor#associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate Certificate#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate Certificate#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate Certificate#BSC (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate Certificate#degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate Certificate#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate Certificate#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate Certificate#Master of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate Certificate#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate Certificate#Master#Bachelors#Bachelors of Arts Philosophy#Associates#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate Certificate#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate Certificate#Post-Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate Computer science \\nAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate courses (MS) of Biotechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate CSS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate Culinary Arts#Associate of Sciences degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   67 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      GRADUATE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate Degree         Master of Science#Graduate Degree   Bachelor of engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate Degree - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate degree - Master of International Business#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate Degree - Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate Degree (AGS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            graduate degree (Masters of Science)#M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      GRADUATE DEGREE \\n\\n? Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate Degree Bachelor of Arts (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate Degree Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate Degree Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate Degree Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate Degree of Science Banking and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate Degree: 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate Degree: M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate Degree: Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate Degree: MSIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate Degree: Non Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate Degree:#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate Degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate Degree#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate Degree#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate Degree#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate degree#Master of Liberal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate Degree#Master of Library Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate degree#Master of Science#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate Degree#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate Degree#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate Degree#Master's of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   graduate degree#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate Degree#Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  graduate degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate Degree#S#UMBC#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate Degree#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate Degree#Undergraduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     graduate diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  221 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     GRADUATE DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate Diploma (AJP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate Diploma of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate Diploma of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate Diploma of Chartered Accounting#Bachelor of Business and Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate Diploma of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate Diploma of Tourism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate Diploma#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate Diploma#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate Diploma#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate Diploma#Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GRADUATE DIPLOMA#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate Diploma#Bachelor of\\nCommerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate Diploma#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate Diploma#Bachelors of General Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate Diploma#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate Diploma#C.S. & Applications#Bachelor of Computer Application 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate Diploma#Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate Diploma#Graduate Diploma#Master of Law#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate Diploma#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate Engineer of Technology#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate Equivalency Degree#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate Equivalent Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate Forensic Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate Gemologist degree (GG) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate Gemologist Diploma\\nGraduate Diamonds Diploma#Graduate Stones Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate Gemologist Diploma#Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate Higher Diploma#Bachelor degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate Level Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GRADUATE LEVEL DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GRADUATE MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          GRADUATE Master of Science#Bachelor of Science#M' Lycee#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate Masters of Science#M.I.S#Bachelors of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate Masters#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate Masters#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate MBA#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate Mgmt 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate Midwife (MWN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate Non-Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate Non?Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GRADUATE OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate of Advanced Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate of Associate of Nursing Degree#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate of Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate of BA degree#LLM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate of Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate of BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate of Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate of Bachelors of Arts#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate of Class#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate of Cosmetology License 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate of Diamonds Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate of Executive Secretary#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate of Field Service and Computer Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate of high school home 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate of Honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate of International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate of LEAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GRADUATE OF MASTER OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate of Master's Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate of Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate of Network Technology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate of NIIT Ghana (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate of Potomac's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate of School of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate of the International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate of Top-tier private school of Liberal Arts#B.A. degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate of Virginia Tech#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate Performance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GRADUATE PROJECT MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate research assistant and school of engineering and applied science Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate Research Associate#Graduate Research Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate School\t\t\t\t\tUndergraduate (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate School\tMaster 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       GRADUATE SCHOOL\tMasters of Health Sciences#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate School (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate School Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate School Masters#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate School of Business\tMasters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate school of International Studies (GSIS)\\nMaster of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate school of management (ESG)#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate school of Management (UK)\\n*Adv. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate School USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate School USA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate school, Undergraduate degree Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate Specialist (AGS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate Student 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate Student (Master of Health Science & Doctor of Public Health#Master of Health Sciences (MHS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate Studies Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate Studies#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate Studies#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate with BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate with Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate- Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate-Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate, A.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate, A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate, A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate, Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        graduate. An associate degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GRADUATE(DIPLOMA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate)   Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate/ Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate/Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate/General Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate\\nAssociate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate\\nBachelors of Arts (B.A.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       graduate\\nHigh School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#06 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate#A.A & A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate#A.A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#A.A.S.\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#AA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#AA#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate#AA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#AA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate#AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate#AAS#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#Academic Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#Adv. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#Advanced   Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#Advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#Advanced Diploma Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#An Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate#AS#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GRADUATE#ASSOCIATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#Associate   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 graduate#Associate Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate#Associate in Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#Associate Of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate#Associate of Culinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Associate of Occupational Studies Degree#Graduate#Bachelors of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#Associate of Science#A.S.E.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Associate#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Associate#Specialized Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#Associates Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#Associates of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#Associates' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate#Associates#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate#Associates#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate#B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#B.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GRADUATE#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#B.S of Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 graduate#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          graduate#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GRADUATE#BA DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Bachelor  of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate#Bachelor of  Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate#Bachelor of \\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            graduate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Bachelor of Arts (B.A#Associate of Arts (A.A#Bachelor of Laws (LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Bachelor of Arts Degree   \\nMDS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#Bachelor of Arts Degree\\nMDS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate#Bachelor of Arts degree#Scotia Graduate#BA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate#Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#Bachelor of Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate#Bachelor of Business Administration (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#Bachelor of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#Bachelor of Medicine and Bachelor of Surgery#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   67 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GRADUATE#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate#Bachelor of Science Degree#Graduate Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate#Bachelor of Science Degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate#Bachelor of Science#B.S.E.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate#Bachelor of Science#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#Bachelor of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Bachelor of Science#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#Bachelor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#Bachelor of\\n          Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#Bachelor or Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate#Bachelor s Degree#Master s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Bachelor's Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate#Bachelors of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate#Bachelors#Associates#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate#Bachelors#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate#Bachelors#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#Bachler's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   37 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GRADUATE#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate#BS Degree#Graduate#AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate#BS#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate#BSc degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate#CHEF (Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate#College Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Commerce#Bachelor of Engineering#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#Culinary Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#Degree#Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Degree#Juris Doctor#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Degree#Master's degree#Bachelor of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#Department of Public Administration Masters\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Deploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#DIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  104 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Diploma of Completion 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#diploma of completion of high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#Diploma of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#Diploma#Associate of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate#diploma#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate#Diploma#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#Doctor of Medicine\t\t\tM.D. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Doctor of Medicine, M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Doctor of Naturopathy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate#Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate#General Business Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate#General Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Graduate Diamonds Diploma#Stones Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Graduate#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate#Graduate#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#Graduate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#Graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate#Graduate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Graduate#Graduate#Graduate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#Graduate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Graduate#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Graduate#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#high school and AA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   44 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate#high school diploma#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#high school-high school equivalient 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GRADUATE#HONORS   DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#Hospitality Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#J.E.B. Stuart HS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#Juris Doctor#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Juris Doctor#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#M.B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#M.D#ECFMG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#M.O.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate#M.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#M.S. degree#M.S. degree#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#M.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#M.S.E.E#B.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate#M.S.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#M.S#Master s Degree#B.S#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#MA#MBA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate#Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate#master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate#Master of Aeronautical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Master of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Master of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GRADUATE#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     GRADUATE#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate#Master of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Master of Divinity#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#Master of Engineering Program (ME) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Master of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate#Master of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#Master of Public Administration (MPA)#Bachelor of Arts Degree (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#Master of Public Administration#Bachelor of Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Master of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GRADUATE#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#Master of Science (M.S#Bachelor of Science#B.S#Associate of Arts and Sciences (A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#Master of Science (MS)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate#Master of Science (MS)#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate#Master of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#Master of Science Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Master of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       GRADUATE#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate#Master of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#Master of Science#Master of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate#Master of Science#MSISM#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate#Master of\\n   Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Master s Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GRADUATE#Master_s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate#Master?s Business Administration Degree#Executive MBA#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Master's Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#MASTER'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#Master's degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#Master's Degree#Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Master's Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#Master's Degree#Bachelor's Degree#Bachelor of Education (Industrial Arts) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate#Master's Degree#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate#Master's Degree#requirements of Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#Master's of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#Master's Strategic Studies (MSS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate#Master#Bachelor   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Masters of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate#Masters of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduate#Masters of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#Masters of International Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Masters of Public Administration#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate#Masters of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduate#Masters of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate#Masters of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduate#Masters of Science#Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#Masters' degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#Masters#Bachelor of Science#AA. AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#Masters#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#Masters#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate#Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate#MBA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate#MBA, Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#MBA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduate#MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduate#MIS Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#MIS#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#MPA#Master of\\nPublic Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#MS degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#MS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Graduate#Multimedia Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Graduate#P.G. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Graduate#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Police Academy Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduate#Post Graduate Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#Post Graduate Diploma#Graduate#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#Post Masters Professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduate#Principals 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#Pursuing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduate#Standard Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduate#Terri M. Laufer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduate#Under Graduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduate#Undergraduate#B.B.A#B.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduate#WATCHERS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graduate#WSS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GRADUATED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduated  with Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduated (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         graduated & received diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GRADUATED H.S. DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       GRADUATED JUNE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graduated w/ Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduated with Academic Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graduated with Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduated with General Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Graduated with Standard Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Graduated without Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GRADUATED-DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GRADUATED, DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GRADUATED#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GRADUATED#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GRADUATED#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      GRADUATED#MBA#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduatedwith high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduates with Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduating 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduating Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduating MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Graduating NOVA#AS#Accounting BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graduating with B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GRADUATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GRADUATION DATE#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graduation Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graduation Degree#Bachelor of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Graduation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Graduation Diploma\\nA.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduation Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Graduation M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GRADUATION MAY#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Graduation with Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Grand Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grants Program (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Graphic Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Graphic Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graphic Design A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graphic Design B.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graphic Design B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Graphic Design BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Graphic Design Degree#Bitonto (BA)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Graphic Design Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graphic Design Endorsement & Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Graphic Design MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GRE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GRE#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Gresham, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GRETNA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GRI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ground school Diploma#Bachelors of Science Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GS Graduate#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GS#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GSB) Masters#MBA#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GTE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GU#Master of International Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GUARD#HIGH SCHOOL DIPLOMA#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Guitar Performance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               H . S#Diploma H . D .#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           h Ph.D#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       h Ph.D#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          H S Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     h School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 H. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         H. S Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        H. S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   34 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  H. S. Diploma H. D#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               H. S. Diploma#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 H. S. Diploma#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 H. S. Diploma#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               H. S. Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         H. S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                H.A.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             H.A#CMAA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                H.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  H.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                H.D. WOODSON (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          H.D. Woodson High of Washington D.C#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          H.D#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              H.D#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                H.N.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           H.N.D (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               H.N.D#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        H.N.D#HIGHER NATIONAL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  h.s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  H.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  107 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 H.S          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   H.S     Adv. Biotechnology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         H.S .Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          h.s diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          H.S diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          H.S Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  127 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          H.S DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         H.S Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   H.S School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         H.S, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         H.S.        Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        H.S. (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      H.S. \\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                H.S. Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                H.S. Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               H.S. d 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          H.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          H.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         H.S. diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1049 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         H.S. DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   H.S. Diploma (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   H.S. Diploma + A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        H.S. Diploma and Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             H.S. Diploma high school diploma I.G.C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 H.S. Diploma Thongphong H.S. (LAOS)#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  H.S. Diploma, G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   H.S. Diploma\\n\t\tRegents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      H.S. Diploma\\nAssociate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  H.S. Diploma\\nNVCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      H.S. Diploma#Academy of Business and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        H.S. Diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               H.S. Diploma#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       H.S. Diploma#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       H.S. Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    H.S. Diploma#Associates Degree#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     H.S. Diploma#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     H.S. DIPLOMA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     H.S. Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              H.S. Diploma#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               H.S. Diploma#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 H.S. Diploma#Bachelors of Business\\n     Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    H.S. Diploma#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 H.S. Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              H.S. Diploma#Diploma#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   H.S. Diploma#G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             H.S. Diploma#GCE A-Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         H.S. Diploma#General Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     H.S. Diploma#H.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                H.S. Diploma#H.S. diploma#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     H.S. Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     H.S. Diploma#UDC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        H.S. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                H.S. Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  H.S. School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                H.S. Standard Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        H.S., Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            H.S., High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        H.S., THEATER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       H.S.\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                H.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          H.S.C#S.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                H.S.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          H.S.Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      H.S.Diploma#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         H.S.Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        H.S\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              H.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              H.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 H.S#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         H.S#bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          H.S#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          H.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              H.S#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HA Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hair Stylist Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Half Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Handing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hardware and Electronics Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Hardware Engineering Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Harry D. Gafney, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Have Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAVERHILL, MA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hawaii Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 hB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               HBX#Graduate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HCC#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HCMC.\\nMaster of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HD Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HDSC. (Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He possesses LLB/Jurist Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Health Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Health Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Health-Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Healthcare 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Healthcare Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Healthcare MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HEARNE HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HEFC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Height School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Height school-Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Help Desk Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Help Desk Professional Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Helpdesk Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               HELPED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hematopathology Fellowship Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HHA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HHA CERTIFICATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hi School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hi&h School Diploma\\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HI#Bachelors of Science#HI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HI#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HIBO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HIE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Higb School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High          School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High   school   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High   school   diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High   School   Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HIGH   SCHOOL   Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High   School   Diploma#Bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High   School   Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High   School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High   School Diploma#Nigeria   ,(Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High   school.   Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          high  school   ( Trinidad ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High  School  Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HIGH  SCHOOL  DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High  School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HIGH  SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High  School Diploma#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High - Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       HIGH - Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High .School. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High \\n\\nSchool Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       high \\nschool 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               high \\nschool diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High \\nSchool Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High \\nSchool Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High & elementary school\\nSS.CC. RECOLETA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 high and high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         high diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   82 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         HIGH DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High Diploma degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High Diploma Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High Diploma Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              High Diploma of Software Engineering#Master degree#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High Diploma Software Engineering#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High Diploma#high school \\ndiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High Graduate#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High Honors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High Honors A.S#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High Honors Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High National Diploma (HND) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High National Diploma (HND)#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High National Diploma#Bachelor's  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High National Diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High Performance and Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High Sch Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High Schl Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High schol diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High Scholl Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  515 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  401 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HIGH SCHOOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School\t\t\t\t\t\t\t\t\tDiploma#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School\t\t\t\t\t\t\t\tGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School\t\t\t\t\t\t    Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School\t\t\t\t\t\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School\t\t\t\t\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School\t\t\t\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School\t\t\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School\t\t\tDiploma#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School\t\t      Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School\t\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School\t\tDiploma#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School\t         Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School\t Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High school\tGeneral Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School \t\t\t\t\t\t\t\t\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HIGH SCHOOL \t\t\t\t\tDIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School \t        Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School \tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School       \t\t Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School          Certificate#High School          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School          Diploma#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School          Diploma#A.A (Paralegal) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School          Diploma#Associate Degree          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School          Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High school          Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School        Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School        Diploma#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School        Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School       Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             high School      Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school     Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        high school     graduated#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               high school    Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School    Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School   Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School   I 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               high school  / Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School  \\n          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School  Academic diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School  and Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 high school  diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school  Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School  diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School  Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school  Diploma#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School  Honors  Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School __________________________________          City 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School - American Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School - Business Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School - Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HIGH SCHOOL - DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School - General Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School - graduated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             HIGH SCHOOL - GREAT DISTINCTION GRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High school - LAGOS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School -Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HIGH SCHOOL -DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         high school , dumfries\\nhigh school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       high school ; standard diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school ( Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High school ( high school diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School (ADV) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               high school (Advanced Studies) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School (Commerce) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High school (Diploma)#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School (GED/Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School (HS) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School (Regents Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School (Secondary Education) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High school (USA)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School / Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School / GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     high school \\n          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School \\n          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School \\n \\n\\nWASHINGTON 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High school \\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School \\nAcademic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school \\ndiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School \\ndiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School \\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School \\nDiploma#High School \\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school \\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School & International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School & Vocational Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Academic Diploma, W. E. B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school academics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High school Advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High school Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         HIGH SCHOOL ADVANCED DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School advanced diploma#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School advanced studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High school Advanved Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Agriculture Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 high school and college level#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           high school and college#H.S. Diploma + A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 high school and graduated with a high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School and International Baccalaureate (IB) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School and Nursing\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School and O'LEVELS#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       high school and received a high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     high school and received diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School and Regent Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School AP Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      high school art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Bhaun#Inter#Bachelor of Arts#Bachelor of Engineering#Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Board#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   high school career 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        high school career#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HIGH SCHOOL CERTIFICATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Certificate / GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school Certificate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Certificate#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  high school classes 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Classics Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school college preparatory diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Commerce Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        high school competition#areas\\n   of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school completed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High school conclusion diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Credits          Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Curriculum 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          high school curriculum and received diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            high school degre Palermo 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   high school degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High school degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High school Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  220 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HIGH SCHOOL DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Degree (Diploma#Certified  Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High school Degree (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Degree graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High school Degree, (USA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High school Degree\\nCollege Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Degree#AA\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Degree#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Degree#Bachelors#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Degree#Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Degree#Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Degree#C.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High school Degree#high school degree.  I 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Degree#HOTEL MGMT. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             high school degree#JROTC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Deiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  high school deploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  high school Deploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High school deploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HIGH SCHOOL DEPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school Deploma#associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Di 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Dimploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HIGH SCHOOL DIPLIMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  502 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  high school dIploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  high school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  high school DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  high School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  hIgh school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  hIGH sCHOOL dIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  hIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1143 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  684 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  492 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School dIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                35243 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School DIploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HIgh school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HIgh school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HIgh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HIGH school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HIGH sCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HIGH School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HIGH SCHOOL diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HIGH SCHOOL Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  945 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma\t\t\t\t\t\t\t\t\t\tGrad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma\t\t\t\t\t\t    B Average 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma\t\t\t\t\t\tGRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma\t\t\tBachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma\t\tAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma\tGeneral High School Curriculum 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma\tGeneral High School Curriculum#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HIGH SCHOOL DIPLOMA\tYEARS ATTENDED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school diploma \t\t\t\t\t\t   La 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma \t\t\t\t\t    YEARS ATTENDED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma \tUpper 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HIGH SCHOOL DIPLOMA    \tCLASS OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma          \\nAssociates Degree          Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Diploma          A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma          Anacostia SHS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma          Degree#Bachelor of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School diploma          Frederick 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma          General high school curriculum 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High school Diploma          Grad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma          Grad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school Diploma          Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma          Thomas A.#Pursuing Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HIGH SCHOOL DIPLOMA          YEARS ATTENDED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma      Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma    High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma    W.E.B. Dubois 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma   Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma  \\n\\nhigh school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma  \\n\\nType of Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma  C.D. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma  General Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma  general high\\nschool curriculum 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma  High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma - Degree#high school diploma#international diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma - GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma - GED ( 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    HIGH SCHOOL DIPLOMA ------------------------------------------------------------- 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                high school diploma -International Baccalaureate of Bilingual Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma : SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma ....... 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                           High School Diploma ...................................................................................................................................................................... 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma (12th grade) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma (COMPLETED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma (GED)#Bachelor of Commerce Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma (graduate of year 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High school Diploma (Graduate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school Diploma (graduated) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma (International Baccalaureate Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School diploma (Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma (Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma (WASC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma (WES) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma * * * * * * 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma * * * * * * * * 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma * * * * * * * * * * * 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HIGH SCHOOL DIPLOMA / 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma / GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma \\n \\nBachelor's Degree \\n \\nAssociate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        High school diploma \\n*Associate of Arts (A.A.) \\n*Associate of science#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma \\n\\n\\n\\n\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma \\n\\nAssociates#of Justice Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma \\nAssociate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High school diploma \\nASSOCIATES DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma \\nB.Sc. Agriculture\\nDiploma\\nDiploma\\nM.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma \\nCulinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma \\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma \\nDiploma#Bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HIGH SCHOOL DIPLOMA \\nHigh school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HIGH SCHOOL DIPLOMA \\nHIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma & Certificate of Engineering (PLTW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School diploma & CNA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma & Lebanese Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma & Visual Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma & Vocational Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma academic degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma AFFILIATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            high school diploma after 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              high school diploma and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma and Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma and an IB (International Baccalaureate) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         high school diploma and arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma and Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High school diploma and Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma and Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma and Business Administration Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school diploma and certificate of merit received 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   high school diploma and GED#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    high school diploma and graduated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High school diploma and International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma and International Baccalaureate (IB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma and International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High school Diploma Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma Basic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma C.D. HYLTON H.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma C.NA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma Cuba\\n Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             high school diploma G PA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High school Diploma GED ( 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma GED, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma general 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma General high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High school Diploma Grad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma Grad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High school diploma graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High school Diploma Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        high school diploma graduated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma Granted 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma High School Classes 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma High School High Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma Hinesville GA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma J.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma JUNE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma of Virginia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma or GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school diploma PNI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High school diploma Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HIGH SCHOOL DIPLOMA SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High school diploma Senegal#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma State of Maryland 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school diploma Wheaton high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HIGH SCHOOL DIPLOMA YEARS ATTENDED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma___________________________________ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma----- 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma, A.S.J.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   high school diploma, and graduated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Diploma, Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma, DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma, O Level, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          High school diploma, Out of USA#Bachelor of Bank accountant 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma; 12th Grade ; 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Diploma????????????? ????????????? ????????????? ?????????????#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma.  Transcripts and Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school diploma. Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma................. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma........................... . 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school Diploma.\\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma(GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma). DC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High school Diploma).\\n\\nWGU#Bachelors Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma/ G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             HIGH SCHOOL DIPLOMA/ GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     HIGH SCHOOL DIPLOMA/ARTS DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma/G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Diploma/G.E.D \\nG.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma/GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            high school diploma/Ged ; 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma/GED, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma/WAEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma\\n      \\n     Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma\\n     Masters of Architecture          Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             High school Diploma\\n  Fortis college (Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma\\n \\n\\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma\\n*Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school Diploma\\n*Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma\\n*Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma\\n*Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School diploma\\n*B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school Diploma\\n*Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma\\n*Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma\\n*High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          high school diploma\\n\\n          software 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma\\n\\n\\n        Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma\\n\\n\\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma\\n\\nBachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Diploma\\n\\nD.R.E.A.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma\\n\\nNova advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    high school diploma\\n\\nsoftware 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma\\nA.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma\\nAssociate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma\\nAssociate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma\\nAssociates degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High school diploma\\nB.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High school diploma\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma\\nBachelors  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School diploma\\nCLASS OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School diploma\\nEisenhower High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma\\nG.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School diploma\\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma\\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma\\nHigh school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma\\nHigh school graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              high school diploma\\nI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HIGH SCHOOL DIPLOMA\\nI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             high school diploma\\nI#advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma\\nM.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma\\nMaster Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma\\nRegents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    high school diploma\\nSpringbrook high school.\\nAssociate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HIGH SCHOOL DIPLOMA\\nYEARS ATTENDED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma#10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma#12th Grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#A Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#A.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High school diploma#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School diploma#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HIGH SCHOOL DIPLOMA#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#A.A.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma#A.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#AA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma#AA of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#AA/BA of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#ABA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma#Academy of Business and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#Academy of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HIGH SCHOOL DIPLOMA#accounting degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#Addition 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma#Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Advanced Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school diploma#advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#ADVANCED DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HIGH SCHOOL DIPLOMA#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#Advanced Diploma Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma#Advanced Diploma\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HIGH SCHOOL DIPLOMA#Advanced Level Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#Advanced Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#ALL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#AP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma#Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma#AS OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#ASE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High school diploma#Associate Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Associate degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   high school diploma#Associate degree#Connecticut school of Broadcasting#Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#Associate Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school diploma#Associate of applied Arts#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school diploma#Associate of Applied Science (A.A.S) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High school Diploma#Associate of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Associate of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school diploma#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school Diploma#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#Associate Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#Associate of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma#Associate of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma#Associate of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma#Associate of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma#Associate of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             high school diploma#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Associate of Science Degree (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#Associate of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School diploma#Associate of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#Associate of Science#High School Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               high school diploma#associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               high school diploma#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school diploma#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Diploma#Associate's Degree Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Associate's degree#Associate's#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#Associate's Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       high school Diploma#Associate) Degree#COLUMBIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma#Associate\\'s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school diploma#Associate#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School diploma#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                high school diploma#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                high school diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school diploma#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   33 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HIGH SCHOOL DIPLOMA#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma#Associates Degree \\nBachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#Associates Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              HIGH SCHOOL DIPLOMA#ASSOCIATES DEGREE#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#Associates Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma#Associates Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#Associates Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#Associates Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#Associates Degree#Bachelors of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma#Associates In Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma#Associates of applied science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#Associates of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#Associates of Hospitality 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma#Associates of Information Science Option of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#Associates of Occupational Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma#Associates#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#Associates#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                high school diploma#B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              high school diploma#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma#B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School diploma#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      high school diploma#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma#B.S.C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#BA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School diploma#Baccalaureat 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma#Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Diploma#Baccalaureate#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High school diploma#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School diploma#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#Bachelor Degree#B. Sc#Master#Master Degree (M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma#Bachelor Degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma#Bachelor of \\nInformation Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HIGH SCHOOL DIPLOMA#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#Bachelor of Arts/Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Bachelor of Arts#Juris Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#Bachelor of Arts#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma#Bachelor of fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma#Bachelor of Fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#Bachelor of nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma#Bachelor of Science#Associate of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma#Bachelor of Sciences#Bachelor of Sciences#A.A#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#Bachelor of the Arts#Bachelor of Arts degree#Master of the Arts#Master of the Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Bachelor Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school Diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma#Bachelor's Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#Bachelor's Degree#Bachelors of Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#Bachelor's Degree#Current 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma#Bachelor's of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#Bachelor#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#Bachelor#Bachelor of Science#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#Bachelor#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma#Bachelor#Master of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HIGH SCHOOL DIPLOMA#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 high school diploma#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school Diploma#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma#Bachelors of Arts & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#Bachelors of Arts Degree#Board of regents 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             High school diploma#Bachelors of arts#Associates of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#Bachelors of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#Bachelors of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#bachelors#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#Bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               HIGH SCHOOL DIPLOMA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma#BS Bus. Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma#BS of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma#BS#MSW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Diploma#Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School diploma#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school diploma#C.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#C.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High school Diploma#C.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#CBT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma#Certificate of Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma#CERTIFICATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma#Clarksburg Maryland. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High school diploma#CMA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Diploma#College Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma#Credit Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Diploma#Credit Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma#Culinary arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#CurrentAssociate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma#CurrentHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma#Curriculum 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           high school diploma#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High school diploma#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School diploma#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HIGH SCHOOL DIPLOMA#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HIGH SCHOOL DIPLOMA#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Diploma#Degree/Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma#DEO#diploma#DWA, Diploma#diploma#DUPS, Diploma#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High school diploma#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High school diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High school Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  126 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HIGH SCHOOL DIPLOMA#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HIGH SCHOOL DIPLOMA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HIGH SCHOOL DIPLOMA#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#Diploma of General Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#Diploma of General Study#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#Diploma\\nAssociate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#Diploma#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HIGH SCHOOL DIPLOMA#diploma#ASSOCIATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#Diploma#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma#Diploma#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma#Diploma#Business Studies#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High school diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#Diploma#Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma#diploma#High School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma#doctor#Bachelor of Medicine and Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#Doctor#High School Diploma#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High school diploma#Electrical#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#EMT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#Excelled 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#FY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma#G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school diploma#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school Diploma#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school diploma#GED#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#General Education Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma#Graduate#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#H.S Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#H.S. Diploma#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma#High  School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      high school diploma#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school diploma#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school diploma#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school Diploma#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School diploma#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HIGH SCHOOL DIPLOMA#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Diploma#High School   Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma#high school and earned a high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#high school and graduated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#high school class 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma#High School Course Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma#High School curriculum 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              high school diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              high school Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school diploma#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school diploma#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school Diploma#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School diploma#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   78 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HIGH SCHOOL DIPLOMA#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HIGH SCHOOL DIPLOMA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HIGH SCHOOL DIPLOMA#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#High School Diploma/G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma#High School Diploma\\nAssociate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma#High School Diploma\\nAssociate of Science#IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#High School Diploma#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            High school diploma#high school diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            HIGH SCHOOL DIPLOMA#high school diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#High School Diploma#Bachelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#High School Diploma#G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#high school diploma#high school curriculam \\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma#High School Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#high school diploma#High school diploma#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            high school diploma#high school education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma#High School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma#high school graduating 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High school diploma#high school of Deido 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#High school student 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#high school year 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Diploma#high school. I 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma#high school. Received diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#high school/college 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma#high school\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Diploma#honors diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Diploma#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#HS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma#HS diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#IB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma#IB Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma#IB#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#III 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#In progress of AA and AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#International Baccalaureate  High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma#International Baccalaureate Bilingual Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  HIGH SCHOOL DIPLOMA#International Baccalaureate High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma#J. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#JAG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#JOB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#Jun 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma#JUNE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma#JUNE OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma#Junior High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#LAN Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma#Letters of Recognition 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       HIGH SCHOOL DIPLOMA#LITERATURE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#LLM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#M D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#M D#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Diploma#M.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma#M.E.S.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HIGH SCHOOL DIPLOMA#M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     HIGH SCHOOL DIPLOMA#MASTERS#11th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma#Matriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HIGH SCHOOL DIPLOMA#MAY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma#MayAssociate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school diploma#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School diploma#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School DIploma#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Diploma#Medical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#MPI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HIGH SCHOOL DIPLOMA#MS\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Diploma#MS#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Diploma#Network Security Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#No degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#No Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#No Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#NOVA) (NVCC)#No Degree#High School \\nDegree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#NSO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma#Obtain degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#Office Administration Diploma#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Diploma#PC Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Diploma#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HIGH SCHOOL DIPLOMA#PURSUING (AAS) DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#Pursuing BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   High school diploma#Rawalpindi(Pakistan).\t\t\\n.  Diploma#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Diploma#RECOGNITIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Diploma#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  high school diploma#science, graduated With Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diploma#Standard Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High school diploma#T. R 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#T.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HIGH SCHOOL DIPLOMA#TAKING UP MY (AAS) DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school diploma#U.S. ARMY DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma#U.S.A. Associates Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Diploma#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School diploma#Undergraduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Diploma#Universidad Nacional El Salvador Law Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Diploma#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Diploma#V.A#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma#Washington 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Diploma#Woodbridge 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Diploma#WV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School DiplomaMay 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School DiplomaNewport 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diplomas 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school diplomat 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Diplomat 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school Diplomia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School diploms 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High school dipolma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High school Dipolma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Dipolma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HIGH SCHOOL DIPOLMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Dipolma\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school dipolmia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school dipoloma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school Education - Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Education#B.S. and M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Endorsement#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Equivalency 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   51 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Equivalency Diploma (G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Equivalency Diploma (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High school Equivalency Diploma GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Equivalency Diploma#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Equivalency Diploma#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Equivalency Diploma#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Equivalency Diploma#Course of Study          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Equivalency Diploma#Curriculum 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Equivalency Diploma#master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Equivalency\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Equivalent Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High school equivalent diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High school Equivalent Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Equivalent Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School equivalent) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HIGH SCHOOL EQUIVELENCY BALTIMORE MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Experience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           high school for science and technology#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School GED. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School GED#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School General Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School General education Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School General Equivalence Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School General Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Grad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 high school graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   55 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  747 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HIGH SCHOOL GRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Graduate\t\t\tSuitland MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                        High School Graduate ________________________________________________________________________ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Graduate ? Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Graduate (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Graduate (DIPLOMA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Graduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School graduate diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High school graduate. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Graduate/Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Graduate\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Graduate#12th Grade High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Graduate#advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Graduate#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School Graduate#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Graduate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Graduate#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Graduate#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             high school graduate#Associates#BA or MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Graduate#Associates#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school graduate#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Graduate#Bachelor Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Graduate#Bachelor Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Graduate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school graduate#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school graduate#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Graduate#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Graduate#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Graduate#Bachelors Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High school graduate#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Graduate#Bookkeeping 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school graduate#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School Graduate#Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school graduate#certificate (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School Graduate#DBA (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High school graduate#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Graduate#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Graduate#DEGREE#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High school graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High school Graduate#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School graduate#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Graduate#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Graduate#Diploma#Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Graduate#Diploma#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School Graduate#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Graduate#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School Graduate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Graduate#High School\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Graduate#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High school graduate#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Graduate#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school graduated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School graduated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     High school graduated (high school diploma)\\n*Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School Graduated With Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HIGH SCHOOL GRADUATED#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                high school graduates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School Graduation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Graduation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Graphic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School High Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High school High school diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Honor Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Honors diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HIGH SCHOOL HONORS DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Honors Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   high school in D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school in Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School in Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High school John f. Kennedy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school leaving certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High school leaving Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Maths Diploma#High School Architectural Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      high school may 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School NDA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           high school of New Orleans 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school of Uijeong 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school of Uijung 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High school or 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School or equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School or equivalent   \\ni have complete high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School or equivalent \\n\\nhigh school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School or equivalent \\n\\nRegents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School or equivalent \\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High School or equivalent Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School or equivalent\\n\tadvanced studies diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School or equivalent\\n\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School or equivalent#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School or GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school or#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School Post-Graduate Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                       High School Primary Source Activity electronic#High School Citizenship and Character Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      high school prior#matriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Proficiency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School Regent Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School Regents Diploma#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High school scientific Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      high school Spanish#B.A#M.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Spingarn#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High school spokesperson 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High school Srithatpitayacom school Udonthani 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School Standard Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High school Standard Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 high school students 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              high school students participating#Juris Doctor#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School Studies HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School successfully#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High school teacher diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School Teacher Grade two Diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 high school teachers 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   high school tenure 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School Valedictorian 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       high school with advanced diploma#s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 high school with an advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 high school with an associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School with Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           high school with my degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          high school with my diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School with Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     high school year 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school- Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School-Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High school-Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High school-medical school#Master's degree#PhD#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High School, Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      high school, attaining\\nmy high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High school, degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               high school, ft. MEADE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High school, Hayfield secondary school\\ndiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              high school, potomac MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School, Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School; Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School:  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 high school: Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school: Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School: Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School: Lycee de BAFANG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      high school?  Yes\t\tDate of Diploma#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High school.    Springbrook High school Years 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HIGH SCHOOL. MAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            high school. Received high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               high school.\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School/ Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school/ Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School/ GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School/Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School/Diploma#High School Curriculum#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School/Equivalent Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School/GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School/Secondary Diploma#Highschool Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            high school/trade diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School\\n\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School\\n          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High School\\n     Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School\\n   Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High school\\n*Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   high school\\n*High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School\\n\\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school\\n\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High School\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                high school\\ndiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                high school\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school\\ndiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School\\ndiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   65 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School\\nDiploma#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School\\nDiploma#Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School\\nDiploma#LLM#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School\\nDiploma#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School\\nDiploma#Stander Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            High School\\nFrench Baccalaur�at Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            high school\\nhigh school diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School\\nICS#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High school\\nMahmood Hotaki high school - Kabul 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           High school\\nReceived high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HIGH SCHOOL\\nSCIENCE & TECHNOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High school\\nTunisia high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School#Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         high school#advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         high school#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school#Advanced Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 high school#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High School#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High school#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School#Associate Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     high school#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       High School#Associate s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       high school#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         High School#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                High School#Bachelor's Degree#Master's Degree#BS/MS#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      high school#Bachelors#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High school#deploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  high school#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High school#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          High School#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School#H.S. Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High school#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High School#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School#high school courses 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High school#high school curriculum 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High School#high school curriculum 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      high school#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      high school#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High school#High School DIploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High School#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High School#High School Diploma#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High School#High School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High school#high school\\nCosmotology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              high school#high school#jr. high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High School#Master of\\nPublic Administration (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High School#N.D.M.,A.E.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High school#Ojo. Nigeria (LLB Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High Schoold Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High SchoolH.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      High SchoolJune 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High Schools Equivalency Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High Schoool Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HIGH SCHOOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   high scool diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High Scool Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HIGH SCOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HIGH SHOOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   high shool diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High Shool Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HIGH SHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High sSchool Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High Tech Ins 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High Tech#BBA#B.B.A#MBA, M.B.A#BA, B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    High with Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High- School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    high-level degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High-School ADV. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High-school degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   High-School Degree (Baccalaureate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  high-school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High-school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High-school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High-School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High-school Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High-school graduate#High-school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High. School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High. School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  High.School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 High/ School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        High\\n        School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             High\\n   School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              High\\n  School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High\\n\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High\\nDental Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                high\\nschool diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                High\\nSchool Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        High\\nSchool Diploma and International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          High\\nSchool Diploma#Associate of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     High\\nSchool Diploma#Bachelor Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               High\\nSchool Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     high\\nschool\\nWASHINGTON#High School\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HIGHCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Higher   Diploma#Postgraduate   diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Higher   National   Diploma   (HND) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Higher   secondary#S.S.L.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Higher diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   55 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       HIGHER DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Higher Diploma#10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Higher Diploma#AHAMA) Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Higher Diploma#APTECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Higher Diploma#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Higher Diploma#Bachelor  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Higher Diploma#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Higher Diploma#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Higher Diploma#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Higher diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Higher Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Higher Diploma#H.D.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Higher Diploma#Higher Diploma#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Higher Diploma#LL. B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Higher Diploma#N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Higher Diploma#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                           Higher Diploma#Postgraduate diploma#Master#Master's degree#MOHAMEDTAHA#Doctor of Philosophy#doctorate#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     higher education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Higher education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   74 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     HIGHER EDUCATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Higher Education (HE) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Higher Education B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Higher education diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Higher Education Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             HIGHER EDUCATION DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Higher Education Diploma (MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Higher Education Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Higher Education#A.A.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Higher Education#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Higher Education#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Higher Education#B.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Higher Education#B.Sc degree#Higher Diploma#M.Sc degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Higher Education#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Higher Education#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Higher Education#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Higher Education#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Higher Education#bed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Higher Education#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Higher Education#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Higher Education#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             HIGHER EDUCATION#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Higher Education#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HIGHER EDUCATION#Ed. S.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    higher education#higher education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Higher Education#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HIGHER EDUCATION#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               higher education#higher education#B.A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Higher Education#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        higher education#MASTER OF EDUCATION#BACHELOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Higher Education#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HIGHER EDUCATION#Master of\\nArts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Higher Education#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Higher Education#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Higher Education#PhD#MD#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Higher national diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Higher national Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Higher National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  108 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Higher National Diploma  (HND) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Higher National Diploma (BS equivalent) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Higher National Diploma (HND) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Higher National Diploma (HND) Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Higher National Diploma (HND)#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Higher National Diploma (HND)#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Higher National Diploma HND 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Higher National Diploma(HND) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Higher National Diploma#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Higher National Diploma#Bacheclor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Higher National Diploma#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Higher National Diploma#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Higher National Diploma#Bachelor of  Science Degree#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Higher National Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Higher National Diploma#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Higher National Diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Higher National Diploma#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Higher National Diploma#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Higher National Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Higher National Diploma#Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Higher National Diploma#H.N.D\\n\\n. National Diploma#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Higher National Diploma#HND#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Higher National Diploma#Ilorin#Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Higher National Diploma#National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Higher National Diploma#Senior High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Higher School Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Higher School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     higher secondary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Higher Secondary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Higher Secondary Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Higher Secondary Course 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Higher Secondary Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Higher secondary diploma#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Higher Secondary School Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Higher Secondary School Certificate (Business Studies) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Higher Secondary School Certificate (Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Higher Secondary#10+2#10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Higher Secondary#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Highest Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Highest Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Highest Degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Highest Degree#High School Diploma#None 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Highest Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Highest Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Highest Degree#Masters of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Highest Educational Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Highs School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HIGHSCHOOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Highschool diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Highschool Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HighSchool Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HIGHSCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Highschool Diploma (CED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Highschool diploma\\nCrossland high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HIGHSCHOOL, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HIGHSCHOOL#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hight school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hight school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hight School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hih School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HiLCoE school of computer#Post graduate diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hillside Primary School\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HILOT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               HIM#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HIPAA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HISGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HISTORY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      History  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       History Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              History of Art, Diploma of Conservation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        History of World Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             HISTORY#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 hM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HNC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HNC#Business Studies#ONC#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hnd 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HND 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         HND (Higher National Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HND Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HND Diploma#QCF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HND#B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HND#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               HND#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HND#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HND#higher education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HND#Higher National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HND#National Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               hold Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hold Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Homeland Security Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HONOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Honor Degree#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Honor Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       honor graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Honor Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   33 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Honor Graduate\\nS.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Honor Graduate#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Honor Graduate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Honor Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Honor Graduate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Honor's Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Honorary Degree#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Honorary Dental Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Honorary Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Honorary Diploma#Master Builder of International Friendship 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Honorary Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Honorary Doctorate of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Honorary Doctorate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Honorary) D.Min 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               HONORS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Honors     Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Honors Academia Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Honors BA#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Honors Baccalaureate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        honors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Honors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Honors Degree#Bachelors of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Honors degree#master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       honors diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Honors diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  143 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       HONORS DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Honors Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Honors Diploma#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Honors Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Honors Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Honors Diploma#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Honors Diploma#WA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Honors graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Honors Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HONORS GRADUATE DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Honors Graduate#Associate of Arts#Associates of Arts#Bachelor Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Honors Graduate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Honors graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Honors Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Honors Law Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Honors Master of Arts (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Honors Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Honors Vocational Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      honors. B. \\nA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Honors) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Honours (Postgraduate) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Honours Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Honours Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Honours Graduate Diploma of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Honours Graduate Diploma of Finance & Accounting (GDA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hons BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HONS BA (PSYCHOLOGY) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hons. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hons.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Hood college (Graduate#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HOPE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Horizons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Horticulture AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Horticulture Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HOSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hospitality and Tourism B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hospitality Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hospitality Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hospitality Degree (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hospitality Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hospitality Management Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HOTEL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hotel and Hospitality Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hotel Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hours Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hours of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HR Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HR Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HR Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       HR,     Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HR, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               HR#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HRIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HRIS Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HRMG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HS (diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HS (Have HS Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HS \\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HS Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HS Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HS ADVANCED DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HS Courses (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               HS Dip 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HS diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1347 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HS DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HS Diploma        Henry E. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     HS Diploma (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HS Diploma and Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HS Diploma Grad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HS Diploma***    ********* 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     HS diploma#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HS Diploma#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HS Diploma#advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HS Diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HS Diploma#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HS Diploma#Associate Degree#Legal Secretary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HS Diploma#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         HS Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HS Diploma#Associates' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HS Diploma#B.A. Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       HS Diploma#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HS Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HS Diploma#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HS Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       HS Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HS Diploma#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               HS Diploma#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HS diploma#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HS Diploma#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HS Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       HS Diploma#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HS Diploma#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       HS Diploma#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       HS Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HS Diploma#High school graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HS Diploma#High School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HS DIPLOMA#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       HS Diploma#International BACCALAUREATE Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HS Diploma#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HS Diploma#WPAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HS Dipolma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HS DIPOLMA#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HS Forensics Honors Diploma#High School Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HS graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HS Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HS Graduate, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       HS Graduate#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HS graduate#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HS Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HS GRADUATE#YEARS OF BACHELOR OF ARTS\\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               HS High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HS Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HS School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HS SENIOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HS Venezuela.     Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HS- Diploma#BS#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HS- GENERAL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HS-Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HS, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hs. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HS. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HS/GRAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HS\\n Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         HS\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HS#Associates in Science Degree (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HS#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               HS#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HSD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HSD (High school Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         HSE#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HSEB NEPAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HSG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HSG Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HSR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HSSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HTML 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             HTR#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Human Recourses Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Human Resource Management Completion of AA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Human Services Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Humanities (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Humanities Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Humanities Program Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 HVAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HVAC degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HVAC Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         HVAC Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     HVAC Tech Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HVAC Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HVAC/R Tech Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HVAC/R Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         HVAC#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       HVACs' Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hyattsville Maryland \\nreceived Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hyattsville Maryland received Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hygiene Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I (B) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I. B. (International Baccalaureate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I. BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I.A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I.B Diploma Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I.B. Biology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I.B. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I.B. Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I.B.E.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I.B.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I.C.S.E#10th#I.S.C#12th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I.C.S.E#12th Grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I.D.E.A PCS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I.J.M.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I.M.B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I.M.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I.P.E#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I.S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I.T.M., Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         IAA) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Iam a graduate of bachelors' degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IAQ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   IB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         IB   Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IB Bilingual Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   IB Certificate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           IB diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           IB Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IB Diploma Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          IB Diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IB Diploma#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      IB Diploma#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   IB Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   IB Diploma#Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       IB Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           IB Diploma#High School Diploma#International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        IB Diploma#IB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IB Diploma#International Baccalaureate (IB) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    IB German Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               IB High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    IB honors diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   IB Scholar Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          IB) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IB#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         IB#Business Administration and Management IB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           IB#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        IB#FT Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               IB#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                IB#IB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       IB#IB#IB#IB#IB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                IB#IB#International Baccalaureate Diploma#International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                IBDBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              IBM#Bachelors of Electrical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   IC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             IC AGILE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ICA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ICAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ICC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ICS#Associate Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ICSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ICTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ICTS, MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ICTS. BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ICTS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          IDM#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IDMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IDX 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IEEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IEF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IEHA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                IELTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             IERW#OAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                IET M.Sc. Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IFCM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IFSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   igh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    IGNOU#MCA#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   II 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           II Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                II. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             II.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         iii) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ILAM Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Illustration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ilorin of Nigeria. (B.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ilorin of Nigeria. (Degree)#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Imagery Analyst Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IMF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              IMF#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         IMM) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Import and Export Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              IMS#JCL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     IMSU#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              IMT#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              in Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IN Progress Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            In Pursuit of Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In pursuit of JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    in Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    in Washington D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         INBachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  INC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Incomplete Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Incomplete BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            INCOTERMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                INDIAAssociate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IndiaBachelor of EngineeringMajoring 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               IndiaBachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Individualized Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Industrial Business Executive Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Industrial design & Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Industrial Health Diploma#Post-Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Inf.) (Intermediate Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Info Pro Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Inform.) (Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Informatic Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Informatics Degree#Master's Degree#Doctorate#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          INFORMATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Information and Services \\nDiploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Information of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Information systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Information Systems degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Information Systems Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Information Systems Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               INFORMATION TECHNOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Information technology (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        INFORMATION TECHNOLOGY DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ing (Master) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ingber, D.M.D#D.D.S#P.A#C. Mazza and M. Matkov, D.D.S, P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                INOVA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               INPG#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Insdutrial Bachiller  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           INSEAD MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     INSEAD#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          INSEAD#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Insitute of Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               INSPER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    INSTITUT D'ETUDES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Institute          Degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Institute   of   Genomics   &   Integrative#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Institute of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Institute of Business Management#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Institute of Management Studies#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Institution 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    INSTITUTION\t\t\t\t\t\tDEGREE#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Institution\t\t\tDegree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Institution\t\t\tDegree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Institution\t         Degree#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                              Institution\tDegree#USA#Master of Business Administration (MBA)#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             INSTITUTION AND LOCATION DEGREE\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Institution Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Institution Degree#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Institution Degree#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          INSTITUTION LEVEL & DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Institution of Banking Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Instructor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           INSTRUCTOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Instructor, Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Instructor's Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Insurance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Insurance Specialization Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Int. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Int. Degree#O.S#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Integrated Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Integrated Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Intellectual Property Rights Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Intelligence Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Intended B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Intended Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Intended Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Intended Degree#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Intended Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            INTENSIVE SECRETARIAL DIPLOMA#HIGH SCHOOL REGENTS DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                INTER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Inter#DIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Inter#disciplinary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Inter#inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Inter#Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Inter#Metric 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Inter#Ph.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Interdisciplinary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             INTERDISCIPLINARY DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Interdisciplinary Studies BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interior Decorating Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interior Design B.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Interior Design degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Interior Design Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interior Design Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  218 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         INTERMEDIATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Intermediate 12th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Intermediate certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Intermediate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Intermediate Certificate#Bachelor Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Intermediate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Intermediate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Intermediate Diploma Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Intermediate Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Intermediate Fellow of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Intermediate High School Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Intermediate of Arts (I.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Intermediate of Commerce (ICS)#Bachelor degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Intermediate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Intermediate#10+2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Intermediate#10th  Grade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Intermediate#10th#Intermediate#MD#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Intermediate#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          intermediate#advanced level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Intermediate#Advanced level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Intermediate#Advanced Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Intermediate#Associates Degree (Completed) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Intermediate#B. Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Intermediate#B.Com#P.U.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Intermediate#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Intermediate#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   INTERMEDIATE#CLASS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Intermediate#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Intermediate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 INTERMEDIATE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Intermediate#Doctorate (D.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Intermediate#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Intermediate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Intermediate#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Intermediate#Intermediate#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Intermediate#Intermediate#Intermediate#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Intermediate#Intermediate#Intermediate#Intermediate#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Intermediate#M.E.C, (Regular) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  intermediate#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Intermediate#Matriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Intermediate#Metric 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Intermediate#Semesters of Under Graduate#Bachelors of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         INTERMIDIATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Internal Medicine Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              International   Baccalaureate   Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 International  Baccalaureate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  International Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       International Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 International Advanced Diploma#International Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   49 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           International Baccalaureate (I.B.) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     International Baccalaureate (IB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              International Baccalaureate (IB) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             International Baccalaureate (IB) diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             International Baccalaureate (IB) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         International Baccalaureate (IB) Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     International Baccalaureate (IB) Diploma#Recipient of IB Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           International Baccalaureate Advanced and Bilingual Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        International Baccalaureate Bilingual Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              International Baccalaureate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   International Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  International Baccalaureate diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  145 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     International Baccalaureate Diploma (IB Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             International Baccalaureate Diploma (IB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       International Baccalaureate Diploma (IB)\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           International Baccalaureate Diploma (IBDP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               International Baccalaureate Diploma & Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             International Baccalaureate Diploma and Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   International Baccalaureate diploma and HS diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         International Baccalaureate Diploma Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          International Baccalaureate Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              International Baccalaureate Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       International Baccalaureate Diploma#IB diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      International Baccalaureate Diploma#International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 International Baccalaureate Diplomas 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             International Baccalaureate Full Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      International Baccalaureate High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  International Baccalaureate Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          International Baccalaureate program diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                International Baccalaureate Programme Diploma#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       International Baccalaureate\\nBilingual degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         International Baccalaureate#advanced diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  International Baccalaureate#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  International Baccalaureate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 International Baccalaureate#Diplomas 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      International Baccalaureate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              International Baccalaureate#High School Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           International Baccalaureate#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       International Baccalaureate#IB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                International Baccalaureate#IB#Diploma#International Baccalaureate#IB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             International Baccalaureate#IB#IB#IB#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              International Baccalaureate#International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      International Baccalaureate#International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  International Baccalaureate#International Baccalaureate#International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           International Baccalaureate#pre-university 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    International Baccalaureate� (IB) Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         International Business (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        International Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      International Business Diploma#Advance & Higher Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 International Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                International diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                International Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                INTERNATIONAL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             International Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            International Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 International Diploma#International Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              INTERNATIONAL ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             International General Certificate of Secondary Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     International General Certificate of Secondary Education (IGCSE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       International General Certificate of Secondary Education & GCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     International General Certificate of Secondary Education Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               International Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      International Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               International Master of Business Administration (IMBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                International Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               International Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                International Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               International Masters#Master of Science (MS)#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    INTERNATIONAL MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              International MBA#Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               international MBA#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       INTERNATIONALSTUDIES / S UMMER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Internet & Computer Programming Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Internet Workings (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Internship 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           INTERNSHIP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          INTERNSHIP#B.S. ADVERTISING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          INTERNSHIPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Investigative Forensics     Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ION#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             IPAM#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IPRA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IPST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IPT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              IR          MA (Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Iran Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     IRAN#Bachelor of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Iraq   (Baccalaureate   of   Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ireland Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          IRIX#UNICOS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IRTA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   IS Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           IS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          IS. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ISACA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ISACA#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ISBW         - Masters level degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ISLANDS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ISO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ISOM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ISP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ISP Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ISP Masters#BS#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ISQTB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ISSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ISSP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Issuing Institution Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ISTDI#BTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ISVAP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       IT and Computer Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         IT Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IT Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        IT Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IT Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 IT Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            IT Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           IT Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               IT Help Desk (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   IT Security degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         IT#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                IT#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         IT#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                IT#Master of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Italian 5-y University degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Italy Degree#Bachelor#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Italy. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Italy.\\nDiploma#POSTGRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ItalyM.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ITAT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ITEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ITESM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ITIL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ITIL#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ITS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ITSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IUP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          IVORY-COAST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       J. A#B. A#M. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            J. Cazier 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 J. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   33 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             J. D.?????? ???????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               J. D#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           J. D#B. A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             J. D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                J. D#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               J. D#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 J. M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        J. Richard Lilly & Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 J. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              J.A. White & Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               J.A#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2362 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              J.D. - (Juris Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         J.D. / M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       J.D. / M.S.F.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          J.D. /M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             J.D. & Bachelor of Civil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           J.D. & M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       J.D. & Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     J.D. and Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        J.D. and LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       J.D. and M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   J.D. and M.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          J.D. and MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 J.D. and Master of Environmental Law & Policy (MELP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               J.D. and Master of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       J.D. and Masters of Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          J.D. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          J.D. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      J.D. Degree#B.S. Degree#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        J.D. degree#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      J.D. equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      J.D. EQUIVALENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    J.D. Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             J.D. Juris Doctor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 J.D. Juris Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      J.D. law degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  J.D. program Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          J.D./ M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            J.D./LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           J.D./M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         J.D./M.B.A#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         J.D./M.S.F.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             J.D./MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              J.D.\\nDegree#B.B.A. Degree#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  J.D.\\nGraduate#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              J.D/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                J.D#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          J.D#A.A#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              J.D#A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        J.D#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              J.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   65 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          J.D#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      J.D#B.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            J.D#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              J.D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            J.D#B.S.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               J.D#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 J.D#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          J.D#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            J.D#Bachelor of Arts, B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      J.D#Bachelor of General Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              J.D#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              J.D#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      J.D#Bachelor s Degree#High School/Secondary Diploma#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                J.D#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    J.D#Bachelor's Degree and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              J.D#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 J.D#CONCENTRATION(S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         J.D#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              J.D#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      J.D#High School Diploma#Romania 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             J.D#J. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              J.D#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       J.D#J.D./M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               J.D#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           J.D#JD#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     J.D#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     J.D#JURIS DOCTOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             J.D#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              J.D#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        J.D#M.A. History Joint Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          J.D#M.A#A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          J.D#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      J.D#M.A#B.S. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          J.D#M.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             J.D#M.A#Master's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  J.D#M.A#Masters#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            J.D#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        J.D#M.B.A#A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        J.D#M.B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        J.D#M.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            J.D#M.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       J.D#M.P.H#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              J.D#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      J.D#M.S.W#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      J.D#M.S#B.S#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           J.D#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               J.D#Master of Arts, & Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            J.D#Master of Divinity degree#B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      J.D#Master of Science (MSc)#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          J.D#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          J.D#MASTERS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               J.D#Masters Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 J.D#Masters of Intellectual Property 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  J.D#Masters#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              J.D#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   J.D#MBA \\nJ.D#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    J.D#MBA\\nJ.D#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        J.D#MBA#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          J.D#MBA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             J.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         J.D#Ph.D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         J.D#Ph.D#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                J.D#Post-graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       J.D#University of Michigan B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                J.D#W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      J.E.B. Stuart high school Falls 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           J.E.B. Stuart high school Falls#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  J.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                J.M. Calhoun M.E.B.A#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              J.M#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                J.S.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                J.S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       J.S.M#Master of Science of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  J.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Jacksonville  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  JAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                JAN#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   JAN#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Japan Doctor of Philosophy (PHD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 JAPN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 JAVA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                JAVA#M.S#Ph.D#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 JCCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  JCL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 JCLP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               JCSU#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  579 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     JD\tJuris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             JD  Juris Doctor Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    JD (Juris Doctor) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          JD (Juris Doctor)#MPA (Masters of Public Administration)#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            JD degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            JD Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         JD Degree CT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         JD Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           JD Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     JD Juris Doctor cum laude#MPA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      JD/Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               JD/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              JD/MBA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               JD#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                JD#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              JD#BA#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             JD#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            JD#BA#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             JD#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             JD#BACHELOR OF ARTS (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        JD#Bachelor of Science#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                JD#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          JD#BSBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                JD#Doctor of Law (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      JD#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               JD#J.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             JD#JD#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      JD#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 JD#Juris\\nDoctor#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                JD#Law Degree#Doctor of Jurisprudence#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                JD#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             JD#MA#AB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          JD#Masters of Environmental 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   JD#Masters Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               JD#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           JD#MBA#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           JD#MBA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         JD#MBA#Fin. Degree#J.D#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         JD#MBA#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               JD#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            JD#MPA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        JD#WASHINGTON 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                   Jefe de Oficina.\\n*Coordinaci�n de trabajo para promotores \\n*Manejo de Material POP para punto de venta\\n*Seguimiento de cartera de clientes\\n*Prospectaci�n y cierre de ventas.\\n*Elaboraci�n de contratos.\\n*Elaboraci�n de bases de  datos sobre cartera de clientes de zona pacifico.\\n*Manejo y elaboraci�n de gr�ficas y estad�sticas de ventas.\\n*.Manejo y control de agendas de ejecutivos de ventas y  coordinador de la regi�n 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Jefferson Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Jefferson High School graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                JHU Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       JHUSPH#M.D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  JIM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            JNCIS#Associate of Science Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        JNTU)\tB.TECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  JOB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   John B. Reid, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         JOHNSON#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Joint BA/MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Joint degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Joint Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Joint Degree BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Joint Degree#B.A. (Joint Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Joint Degree#Bachelors of Arts#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Joint Degree#J.D#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Joint Degree#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Joint Degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Joint Degree#Master of Business Administration and Juris Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Joint Degree#MBA/M.S#M.S#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Joint Doctor of Jurisprudence & Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Joint Juris Doctor / M.B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Joint Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Joint Masters#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Joint Ph.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             JollaBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               JollaMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               JORDAN B. STANGER\\nMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Journalism Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Journalism Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          journalism.   Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Journalism#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 JPME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                JROTC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              JSD#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      JUDGE'S DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Judicial Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              JUL#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 JULY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            JULY#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       JULY#Master of Science#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Jun#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 JUNE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 JUNE#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             JUNE#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Junior 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Junior Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juri Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Juries Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Juris 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                JURIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris        Doctor        Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris   Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris   Doctor#B.Sc.   Bachelor   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris   Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Juris  Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris  Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Juris doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 4220 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         JURIS DOCTOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Juris Doctor\t\t\t\t\t\t\t\tBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctor\tBBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctor          Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctor  Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctor  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor ; Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Juris Doctor (dual degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctor (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   82 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    JURIS DOCTOR (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctor (JD) and Masters of Environmental 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctor (JD)\\n\\n\\nJuris Master (JM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctor (JD)#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Juris Doctor (JD)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor (JD)#Bachelor of Science (BS)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Juris Doctor (JD)#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctor (Juris Doctor) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Juris Doctor (Law Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctor \\n\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor & Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Juris Doctor & Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctor & Master of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctor & MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctor and advanced graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctor and Bachelor of Civil Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Juris Doctor and CILI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctor and Comparative (International) Law degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctor and LLM-IP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctor and M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctor and Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctor and Master of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctor and Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Juris Doctor and Master of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Juris Doctor and Master of\\nBusiness Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctor and Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Juris Doctor and Masters of Environmental Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctor CALI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Juris Doctor Dean's Fellow 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  108 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  JURIS DOCTOR DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Juris Doctor Degree (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctor Degree#A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctor Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctor Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctor degree#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctor Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctor degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Juris Doctor degree#Bachelor of\\nArts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Juris Doctor Degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctor Degree#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctor Degree#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctor Degree#Joint Juris Doctor / M.B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctor degree#Master of\\nScience degree#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Juris Doctor graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Juris Doctor of Civil#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctor, (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctor, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctor, Law (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctor????????????? ????????????? ????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctor????????????? ????????????? ????????????? ????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctor/Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctor/Master of Business Administration#Bachelor of Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Juris Doctor\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Juris Doctor\\nDegree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Juris Doctor\\nJuris Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctor\\nMaster of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor\\nMaster of Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor#A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctor#A.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctor#A#A#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctor#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctor#Associate of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctor#Associate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Juris Doctor#B.A#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctor#B.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctor#B#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctor#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Juris Doctor#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Juris Doctor#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   59 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctor#Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctor#Bachelor of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Juris Doctor#Bachelor of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctor#Bachelor of Arts#Small 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctor#Bachelor of Civil Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctor#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Juris Doctor#Bachelor of General Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctor#Bachelor of Laws (LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctor#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Juris Doctor#Bachelor of Science#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctor#Bachelor of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctor#Bachelor of Science#Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctor#Bachelor of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctor#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctor#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctor#Bachelor's Degree, B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctor#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctor#Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctor#Bachelor\\nof Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Juris Doctor#Bachelors of Art#PROFESSIONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctor#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctor#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris doctor#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctor#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Juris Doctor#Diploma#A's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctor#Florida.\\nD.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   72 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Juris Doctor#J.D.) & Master of Arts (M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctor#J.D./M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctor#J.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctor#J.D#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctor#J.D#Bachelor of Arts (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctor#J.D#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Juris Doctor#J.D#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctor#J.D#Bachelor of\\nScience (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctor#J.D#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctor#J.D#Bachelor s Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctor#J.D#Juris Doctor#J.D#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Juris Doctor#J.D#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Juris Doctor#J.D#M.) (Master of Laws) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctor#J.D#Master of Arts (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctor#J.D#Master of Business Administration (M.B.A#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctor#J.D#Master of Public Administration (M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctor#J.D#Master of Science (M.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctor#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Juris Doctor#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Juris Doctor#Juris Doctor#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Juris Doctor#Juris Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctor#Justice Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor#LL.M#Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor#LLM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctor#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctor#M.Phil#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Juris Doctor#M.S#M.B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor#M.S#Mississippi B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctor#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctor#Master Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctor#Master of \\nBusiness Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctor#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Juris Doctor#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Juris Doctor#Master of Arts#BACHELOR of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctor#Master of Arts#Bachelor of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctor#Master of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctor#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctor#Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Juris Doctor#Master of Business Administration#Bachelor of\\nArts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctor#Master of Education#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Juris Doctor#Master of Energy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Juris Doctor#Master of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Juris Doctor#Master of Laws#Masters of Laws#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Juris Doctor#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor#Master of Public Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctor#Master of Public Administration#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctor#Master of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctor#Master of Public Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctor#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctor#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctor#Master of Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctor#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctor#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctor#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                           Juris Doctor#Masters of Business\\nAdministration (MBA)#Masters of Information Systems#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Juris Doctor#Masters of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctor#Masters of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctor#Masters of Intellectual 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctor#Masters of Intellectual#Masters of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctor#Masters of Science#Bachelor of Art#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor#Masters of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Juris Doctor#matriculated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctor#MBA#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctor#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctor#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctor#P.A.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctor#P.A.D#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Juris Doctor#PARK B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctor#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctor#Postgraduate Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Juris Doctor#Prof. S#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Juris Doctor#Visiting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  719 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      JURIS DOCTORATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctorate\t\t\t\t\t\t\t\t  Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctorate\t\t\t\t\t\tLaw 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Juris Doctorate\t\t\t\tMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctorate\t\t        M.S.#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctorate\tUOP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctorate \t\t       Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctorate \t(Law Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctorate          M.S.#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Juris Doctorate    GEORGE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Juris Doctorate ; Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctorate (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 JURIS DOCTORATE (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctorate (JD)#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Juris Doctorate (Law) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctorate and Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctorate and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctorate and Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctorate Awarded 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Juris Doctorate Candidate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctorate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctorate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   44 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctorate Degree (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Juris Doctorate Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Juris Doctorate Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Juris Doctorate Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Juris Doctorate of Common Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctorate of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctorate Pending 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctorate Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctorate Program#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctorate w 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctorate w#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctorate, Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctorate, Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Juris Doctorate; Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Juris Doctorate/Bachelor of Civil Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctorate/Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctorate/Master of Arts#Joint Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctorate/Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Juris Doctorate/Master of Business Administration#JD/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctorate\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Juris Doctorate\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctorate#ABA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctorate#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctorate#B.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctorate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctorate#Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Juris Doctorate#Bachelor of \\n\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctorate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     JURIS DOCTORATE#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris Doctorate#Bachelor of Arts#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctorate#Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Juris Doctorate#Bachelor of Arts#Diploma#E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctorate#Bachelor of Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctorate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Juris Doctorate#Bachelor of\\nScience Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctorate#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctorate#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctorate#Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Juris Doctorate#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctorate#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctorate#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctorate#Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Juris Doctorate#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  JURIS DOCTORATE#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Juris Doctorate#J.D.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctorate#J.D#Master of City Planning M.C.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Juris Doctorate#J.D#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctorate#J.D#Masters#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctorate#JD#Masters#MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris Doctorate#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctorate#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Juris Doctorate#Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctorate#Master of Education#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris Doctorate#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Doctorate#Master of Public Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Juris Doctorate#Master of Science#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Juris Doctorate#Maters#LLM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctoris 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  JURIS DOCTORIS (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Juris Doctoris JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Juris Doctors Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Doctrine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Juris Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Juris Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Juris Master#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris-Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Juris\\n          Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Juris\\n  Doctor#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris\\nDoctor#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Juris\\nDoctor#Master of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Juris#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              JurisJuris Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Jurisprudence Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Jurisprudence Doctorate#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Jurist Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Jurist Doctor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Jurist Doctor\\nBACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Jurist Doctor#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Jurist Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Jurist Doctorate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Jurist Doctorate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Justice BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             justice.          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   JV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  JWI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                K.C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    K.E.S.''S NARAYAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     K.E.S.'S NARAYAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  K.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  KAB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 KAFB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Kampala.\tHigher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Kaplan - Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     KARASEN, Ph.D#Associate of Applied Science (AAS)#Doctorate (PhD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               KASNEB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       KBBI#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  KBR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       KCMO - Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 KCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  KEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Keesler A.F.B#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Kellogg de Colombia S.A.          AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                KENAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Kennedy school of Government#Master#Master#Ma�trise 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  KILGORE TX. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   KINESIOLOGY#BACHELOR OF SCIENCE#Kinesiology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               KING'S COLLEGE Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Kingdom MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  KIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Kitchen & Bath Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         KNEC Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        KNOWLOGY CORP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Kolhapur#Short Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Kolmar de M�xico SA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Kruezberg Germany Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              KS#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           KS#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  KsAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            KSU#B.E.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    KTM#Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                KUMBO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         KVCC#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            l Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                L. (licentiate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 L. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              L. A#Bachelor of Arts#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                L. LB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        L.A#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  L.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                L.L.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            L.L.B (BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    L.L.B.  Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    L.L.B. Equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                L.L.B#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               L.L.B#Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                L.L.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        L.L.M#J.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          L.L.M#L.L.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  L.L.M#Post-Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 L.LB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              L.M.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               L' Academie de Cuisine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                L'Academie de Cuisine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  L'Academie de Cuisine of Culinary arts and pastry#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        L'Academie de Cuisine#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        L'Ensemble de Jaques Dalcroze 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   LA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          La Paz, Bolivia, Law Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Lab School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lagos. Master of Science#Bachelor of Science#Career Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Lahore, Pakistan (www.pu.edu.pk) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LAN Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LAN Technologies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Landscape Architecture Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Language 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LANGUAGE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Language and B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Language Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Language Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lanham MD Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Lanka, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LaPlata Maryland\t\tDegree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Largo High Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Largo MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Largo MD. Degree#A.A.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Last Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lauderdale. A.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Laurea (Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Laurea (M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Laurea degree#M.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Laurea Specialistica (Master equivalent)#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Laurel 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Laurel High Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Laurel M.d.\\n          High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Law  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Law (Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Law and Legal Service Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Law Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LAW DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Law Degree\\nLaw Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Law Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Law Degree#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Law Degree#LLM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Law Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Law School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              law student (Juris Doctorate candidate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               law. Bilingual diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LCCI, Group Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LCCI, Group Diploma#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LCPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LDS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leadership\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Leadership Business Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Leadership Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Leadership Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Leadership Fredericksburg Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leading to Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         LearningTree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Lecturer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         LECTURESHIPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lee 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LEED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LEED Green Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Legal 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Legal Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Legal Practitioners Course (LPC-Postgraduate degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Legal Secretarial Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Legal Secretarial Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Legal Secretary Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Legal Secretary Diploma#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Legal Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      LENDING DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LENINGRAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        LEONE#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Letter of Recognition 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LETTER OF RECOGNITION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Letter of Recognition (LOR) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Letter of recognition#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Letters of Recognition 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      level (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Level Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Level of Degree#B.A/A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LFCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LGBT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LGSW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LGSW#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Lib.Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Liberal Art & Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Liberal arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           liberal arts   \\nDegree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Liberal Arts (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Liberal Arts &\\nScience Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Liberal Arts and Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Liberal Arts Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Liberal Arts Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Liberal arts Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Liberal Arts Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       LIBERAL ARTS ASSOCIATES DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Liberal Arts B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Liberal arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Liberal Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Liberal Arts Degree, ( A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Liberal Arts Degree#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Liberal Arts Degree#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Liberal Arts Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Liberal Arts Degree#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Liberal Arts Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Liberal Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Liberal of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Library of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Library Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Library Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Licence (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Licence en Droit (French law degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Licenciada en Derecho (Juris Doctor) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Licenciado en Derecho (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Licenciado en Informatica degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Licenciate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LICENCIATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Licenciatura (Masters degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Licenciatura en Administraci�n de Empresas 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Licenciature and Professional Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              License 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LICENSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  License  International relations  \\nLicense degree#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         License (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                License Cosmetologist 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  License de Physique 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       License degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       License Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  License)          and Virginia#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    LICENSE#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         License#B.A. Master#M.S#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            License#B.A.\\nMaster#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     License#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       License#Bachelor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LICENSED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LICENSED PRACTICAL NURSE VOCATIONAL DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Licensed Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LICENSURE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Licentiate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Licentiate Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Licentiate Degree#BS + MS equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Licentiate of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Licentiate of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Licentiate of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      lieu of Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Life Sciences Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       LIGURIATRADUCE#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Limited post-graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Lince de Oro Award#Bachelor & Baccalaurate generations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Line Assoc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LINWOOD'S RESTAURANT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lisa A. Rodenburg, Ph.D.\\nPh.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     List full Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LISZ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lit.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Literature Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Literature. B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LIUC#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   LL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      LL. B (General)#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LL. B: 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        LL. B#Bachelor of Laws Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LL. M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LL. M#Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   69 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LL.B (Bachelor of Law) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LL.B (Bachelor of Laws) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       LL.B (Honors)#Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LL.B (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LL.B (J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LL.B / J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LL.B Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LL.B Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      LL.B Degree#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       LL.B.   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LL.B. (Bachelor of Law) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LL.B. (Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LL.B. (Bachelor of Laws) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LL.B. (License de droit) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         LL.B. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LL.B. Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               LL.B. Honors (J.D. equivalent) & LL.M#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LL.B. of Chinese law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LL.B#B.L 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LL.B#Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LL.B#Bachelor?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LL.B#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LL.B#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       LL.B#J.D./LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    LL.B#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LL.B#U.S. Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ll.m 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  456 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         LL.M  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LL.M (Master of Law) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LL.M (Master of Laws) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        LL.M (Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LL.M (Masters of Law) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LL.M Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        LL.M Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LL.M Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LL.M, Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LL.M, Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       LL.M.   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LL.M. - (Master of Laws and Letters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LL.M. (Adv 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LL.M. (Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LL.M. (Master of Laws) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       LL.M. (Master of Laws)#LL.B (Bachelor of Laws) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LL.M. (Masters of Law) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         LL.M. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         LL.M. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LL.M. Degree#B.A. Degree#J.D. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     LL.M. degree#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LL.M. degree#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     LL.M. degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LL.M. Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        LL.M. Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LL.M. Masters of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       LL.M. Taxation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        LL.M., Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LL.M#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        LL.M#B.A of Laws (LL.B/JD#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LL.M#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LL.M#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LL.M#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    LL.M#degree#JD#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       LL.M#ELEA#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LL.M#Hispanic Bar Association of D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LL.M#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         LL.M#J.D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    LL.M#J.D#Bachelor of Law#LL.B#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        LL.M#J.D#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LL.M#JD#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    LL.M#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LL.M#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           LL.M#LL.M#Diploma#Bachelor of Laws#B.S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    LL.M#LL.M#J.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LL.M#Master Degree#M.A#B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   LL.M#Master of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LL.M#Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LL.M#Master's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         LL.M#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LL.M#Masters of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LL.M#of D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LLB (Bachelor Of Law) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LLB (Honors) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LLB (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        LLB (Law)#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LLB Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LLB degree#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LLB, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LLB#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LLB#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LLB#Bachelors of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LLB#graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      LLB#Jurist Degree#M.A#B.A#B. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      LLB#Jurist Degree#M.A#B.A#Bachelor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LLB#L.L.B#postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Llewellyn 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LLM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  113 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LLM - Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LLM (Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LLM (Master of Laws) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        LLM (Master of Laws)#LLB#Bachelor of Laws#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         LLM (Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LLM (Masters of Law) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LLM Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LLM Degree#Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         LLM Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LLM#BACHELOR OF LAWS (LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LLM#Bachelor's Degree#LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LLM#Bachelors of Social and Legal Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LLM#Droit. (Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LLM#J.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     LLM#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        LLM#LL.M#LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LLM#LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LLM#LLM#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       LLM#LLM#MBA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    LLM#Master of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LLM#Masters of Law#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        LLM#No Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Lm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LMT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Location\tDegree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Location          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Location Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Location of Institution\t\tDegree#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Locksmith, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LOGTECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LONDON#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          lor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Louisiana 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Lower National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      LOYOLA, MBA#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LPN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   41 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LPN Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LPN Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LPN DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        LPN Diploma#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                         LPN Diploma#Associate of Arts#Associate of Arts Degree#AA Degree#High School Diploma#High School Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         LPN Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   LPN School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LPN training Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         LPN- DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         LPN, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LSAT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   LSE#Master Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               LSI#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LSU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LSU#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Lteif, D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             LUO#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        LUTC Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LVN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   48 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M  SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M . A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M .S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M (ASCP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M aster of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M aster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M ASTERS#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M BA#Bachelor of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M Com- Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M D 20102011 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M D Degree#Associate of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M D#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M Ed. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M Eng. and\\n          B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M Phil Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M S#IST#MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M Sc#M.B.A. ICFAI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M Sc#MBA#BBA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M St#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M- Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M-Com (Master of Commerce) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M, Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M, S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M,S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M,Sc - Zoology#B.Sc - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M: Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.    A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.   Eng. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.  A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.  S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  197 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M. A. ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. A. of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M. A., Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M. A.\\nAwarded Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M. A#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M. A#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. A#M. A#Best graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M. A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. A#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M. A#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M. A#M.S#B.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M. A#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M. A#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M. A#Master's#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. A#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M. A#NDU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M. A#Post-Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M. Ahmed Ph.D#MSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. ARCH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M. Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. B. A#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M. B. A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M. B. A#M. S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M. B. A#Ph.D#M.S#B.S. \\n(Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M. B. Massie & V. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M. B., B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M. B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M. C. S. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. Cert#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M. Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M. Corsi, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M. D 20743 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. D. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M. D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M. Div 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M. Div#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M. Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   85 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M. ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M. Ed    Master of Special Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M. Ed (ESL) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M. Ed (TESOL) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. Ed degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M. Ed Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M. Ed Education Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M. ED Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M. Ed. (PBSCE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M. Ed. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M. Ed. Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. Ed. TESOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M. Ed.-Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 M. Ed.)\tMaster of Education#MBA)\tMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M. Ed#A.S#BSOE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M. Ed#B. M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M. Ed#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M. Ed#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             M. ED#ED. S. DUAL DEGREE#Master of Education#M. Ed#Ed. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M. Ed#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M. Ed#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M. Ed#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M. Eisenmann, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M. Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M. ENG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M. Eng (EE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M. Engg. Cybersecurity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M. Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. Engr 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. Litt 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M. M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M. M. (Masters of Music)#B.A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M. M. S  (Master of Management Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M. M. Washington Vocational School         Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. M#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M. M#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M. M#M. M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. Math 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. Mauchet & Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M. Pharm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. Phil#bengalensis (de Man) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. Phil#M.A#M.A#B.A#I.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M. Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M. PP#Master of  Personnel Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M. PP#Master of Personnel Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M. R 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M. s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  464 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M. S � Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M. S. (M.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M. S. & Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M. S. degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M. S. Degree#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M. S. DIGITAL TELECOMUNICATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M. S. E. E#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M. S. FINANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M. S. M. Management#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. S. N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M. S. of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M. S./PHD, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M. S#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M. S#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M. S#B. A#M D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M. S#B. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M. S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M. S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M. S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. S#B.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M. S#Bachelors<BR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M. S#DNC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. S#EDUCATIONM. S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M. S#Institute of Business Administration#M. B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M. S#M. A#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M. S#M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M. S#M. S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           M. S#M. S#M. S#M. S#M. S#M. S#M. S#M. S#M. S#M. S#M. S#M. S#M. S#M. S#M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M. S#M. S#Ph. D#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. S#M.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M. S#Master of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. S#Master's Degree#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M. S#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. S#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. S#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M. S#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M. sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  130 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M. SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. Sc ( 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M. Sc Engg 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M. Sc, in Management degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M. Sc. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M. Sc. (Biotechnology) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. Sc. (Engg 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M. Sc. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M. Sc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M. Sc. degree#B. Sc. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M. Sc. Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M. Sc. IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M. Sc. MEB (Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M. Sc. medical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. Sc., Immunology (Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M. Sc#B. Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M. Sc#B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M. Sc#B. Sc. and M. Sc. Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M. Sc#B. Sc#Higher Secondary#10+2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M. Sc#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M. Sc#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M. Sc#LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M. Sc#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M. Sc#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          M. Sc#Ph.D#Master of Architecture#Bachelor of City Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. Stat 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M. Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M. Tech and Ph.D#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M. Tech#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M..A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M..A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M..A#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M..S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.\\nSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  m.a 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 7049 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A ., Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A ., Masters of Arts#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.A (Master of Arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A (MASTERS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A (Masters) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A & H.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A IMC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.A Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A Master of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.A of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A PRACTICAL#AS OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A, Business Administration, (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.A.  and B.A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A.  U.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.A. - Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A. ; AUGUST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A. (Fr. Lit 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.A. (Graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A. (Honors of Excellency) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.A. (Honors)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.A. (incomplete) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A. (MALD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.A. (Master of Arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.A. (Master of Arts)#B.A#Bachelor of Arts#A.A#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A. (Master of\\nArts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A. (Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A. (TEFL) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.A. \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A. \\nENGLISH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A. \\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A. & B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A. & M.Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A. ABD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A. Administration/Supervision 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A. and ABD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A. and B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A. and completed Ph.D#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.A. and Ed. M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A. and Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.A. ANTHROPOLOGY WITH CONCENTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A. APPLIED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A. APPLIED ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A. candidate (joint degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.A. COMMUNICATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A. COMMUNICATION/MARKETING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.A. completed B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A. Conservation of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   67 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A. Degree#A.Z B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A. degree#B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A. Degree#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A. Degree#Bachelor of Arts#A.A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A. Degree#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.A. Degree#M.L.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A. Degree#M.S. Degree#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.A. degree#S. degree#A.\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A. Distinction (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.A. ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A. Ed.D CAGS#Masters of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.A. Education- Master of science degree of tourism Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A. ENGLISH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A. ENGLISH:  LINGUISTICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A. Film and Video B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A. Global Executive Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.A. HEALTH PROMOTION COUNSELING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A. Homeland Security (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A. I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.A. Ind. /Org 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A. Ind./Org 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A. INTERNTIONAL AFFAIRS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.A. journalism (print) / graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A. M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A. MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A. Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.A. Masters of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.A. Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A. of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.A. of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A. of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A. of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A. Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.A. Second Language acquisition.\\nD.E.A.  (Post Master's Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.A. SOCIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                            M.A. Statistical testing of hypotheses commonly used in the science of\\nfingerprint comparison. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A. Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A. T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.A. T.E.S.O.L 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A. TESOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A. The Master of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A. translator 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A. U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A. Washington D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.A. Writing B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.A., B.A#Advanced graduate#A.B.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A., Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A., M.Phil., Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.A., master of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.A., Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A., Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.A., Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A., Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.A., Ph.D (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.A., Ph.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A., Ph.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A.,.\\nDegree#Master's of C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.A.; Ph.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A.(ABT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.A.) INDUSTRIAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A./B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.A./B.A. Accelerated Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A./M.Sc#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A./Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A.\\n*B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A.\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A.\\nM.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A.\\nMaster of Sociology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A.A.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.A.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A.D.R 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A.Degree#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.A.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A.E.D#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A.E.T#Master�s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A.Ed.H.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A.G.T.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A.I.A. (Master of International Affairs) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A.I.S. Degree#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.A.J 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A.L.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A.L.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A.L.D#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A.L.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A.L.S. (Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A.M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.A.R 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A.R.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A.S. MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A.S#Masters of Administrative Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A.Sc Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A.Sc. Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A.Sc#W.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.A.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   44 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A.T- Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.A.T. (MASTER'S#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A.T. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A.T.L 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A.T) Masters#BSc#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A.T#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A.T#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A.T#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A/C.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.A\\n          B .A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A\\n          B.A\\n          B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A#. B.A. Honours,#A.B. and Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.A#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#A.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#A.B.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A#analysis) Degree of MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.A#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.A#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A#Associate Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#B A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  258 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#B.A. Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#B.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A#B.A#Bachelor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A#B.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.A#B.A#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#B.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#B.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A#B.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A#B.ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#B.G.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#B.L.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#B.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#B.R 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   82 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#B.S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#B.S.J 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#B.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A#B.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#B.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.A#B.S#A.S#CCAF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A#B.S#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.A#B.S#B.A#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A#B.S#Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A#Bachelor Fine Arts#Associates of Applied Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.A#Bachelor Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A#BACHELOR OF SCIENCE (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.A#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#Certified Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.A#CONCENTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A#Development of Online AP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A#Ed.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A#English B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A#FALL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A#Graduate Assistantship 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.A#Graduate#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#Graduate#B.A#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.A#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A#IEDM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.A#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#J.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A#M. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A#M. A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#M. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#M. Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#M.A. completed\\n\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A#M.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.A#M.A#B.A (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         m.a#m.a#b.a. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A#M.A#B.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#M.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#M.A#B.S#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.A#M.A#Graduate#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A#M.A#M.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.A#M.A#SC#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#M.A#Teaching Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#M.L 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#M.P.M#B.B.A#A.A#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#M.P.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A#M.Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#M.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#M.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A#M.S#masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A#M.Sc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.A#M.Sc#B.Sc#GCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A#M.U.M#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.A#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#Master of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A#Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A#Master of International Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#Master's degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A#Master's Thesis (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.A#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#Masters of Language & Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A#MBA and PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#MBA#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#MSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.A#M�ster 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.A#Ph.D.\\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.A#Ph.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A#PhD#A.B.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#Philosophy of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#PMP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.A#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#Psy.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.A#PSY.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.A#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.A#SOAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#T.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.A#T.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.A#Teaching Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.A#TESOL and B.A#M.A#TESOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.A#U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.A#VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.Ac.  \\n\\n\\nMaster of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Acc. & B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.ADM - Master of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.Ag 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.AGR. AGRICULTURAL SCIENCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.Arch) Master of Architecture#M.Arch) Master of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.Arch#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Arch#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.As 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B, B.S#Bachelor of Medicine & Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.B,A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B; B.S#Bachelor of Medicine & Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.B;B.S (Bachelor of Meidcine & Bachelor of Surgery) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.B. Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B. B. Ch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.B. B.S#Bachelor of Medicine, Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.B., B. Ch#Degree of Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.B., B.Ch. (RAND) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.B., B.Ch., B.A.O 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B., B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B., B.S#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.B.,\\nB.Ch. (RAND) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.,B. Ch#Diploma of Pediatric 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.B.,B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 3364 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.B.A\t\\nGraduate#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.A \t(MIS & 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.A  Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A - Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.A - Masters Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.B.A (Finance & MIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A (GENERAL) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B.A (I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A (Master of Business Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.B.A & M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.B.A & M.S#Master of Business Administration (M.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.B.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.B.A Degree#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.A E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.B.A E-Business M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A E#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.A Expected 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B.A Graduate Studies Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.B.A Graduate#Master's Degree (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.A Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.B.A Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.B.A of Business#M.B.A of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A,  FINANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.B.A, M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.B.A, Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B.A, Master's Of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.A, Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A, Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A: Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.B.A.\tMAJOR#B.B.A.\tMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B.A.\tMasters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.A.  \t\t\t\t\t  \t\\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.B.A.  Graduate Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A. (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.B.A. (Honors)#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A. (Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B.A. (Master of Business Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.B.A. / M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A. / T.M. Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A. \\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.B.A. and B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.A. and M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B.A. and M.S.\\n\\nM.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.B.A. and Masters of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.A. Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   34 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.B.A. degree#post-graduate diploma#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A. Executive Global Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A. Global Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A. Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.B.A. Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.B.A. Master of\\nBusiness\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.B.A. Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A. Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A.- Master of Business Administration#B.A#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A., Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B.A.(HR) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A.(Master of Business Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B.A./M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.B.A./M.S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.B.A.\\nPost-Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B.A/ M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A/M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A/M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.B.A/M.S. of HR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.B.A/M.S. of HR#Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.A/Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.B.A\\n          ESI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.B.A\\nDegree#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.A#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B.A#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A#B. Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   52 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.B.A#B.A. (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A#B.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A#B.A#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.B.A#B.A#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.B.A#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.A#B.B.A) Bachelor of Business Administration#D.B.A)Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.B.A#B.B.A#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.B.A#B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  105 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.B.A#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A#B.S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A#B.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A#B.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A#B.S#Associate of Arts#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A#B.S#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B.A#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.B.A#B.Sc./M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.B.A#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.A#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.B.A#Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.B.A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.B.A#Bachelor of Science#Advanced Math and Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.A#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.A#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B.A#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.B.A#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.B.A#Business of Medicine Program� 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.B.A#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.B.A#Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.B.A#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.A#Doctor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.B.A#Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.B.A#EXECUTIVE MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.B.A#Finland. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.B.A#FRANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.B.A#FRANCE#M.S#FRANCE#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.A#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.B.A#Graduate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.A#GWU, D.Sc#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.A#IIUM#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A#J.D#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A#J.D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.B.A#J.D#M.B.A#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.A#J.D#PH.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.B.A#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A#LL.B (J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A#M. S#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A#M.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.B.A#M.A#Graduate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.B.A#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.B.A#M.B.A#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A#M.B.A#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A#M.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.B.A#M.B.A#M.B.A. graduates.\\n\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A#M.C.D.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.B.A#M.Com: Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.B.A#M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.B.A#M.S.A#A.A.C.S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A#M.S.I.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.B.A#M.S.I.M#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A#M.S.I.S#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                           M.B.A#M.S.I.S#Master of Science#B.S#Bachelor of Science#A.S#Associate\\nof Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.A#M.S#B.S#A.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.B.A#M.S#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.B.A#M.T.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.B.A#M.U.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.B.A#Master Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A#Master of Buseiness 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.A#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.A#Master of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.B.A#Master of Business Administration#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A#Master of Business Studies#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.B.A#Master of Management#Bachelors of Business & Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.A#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.A#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.A#Master's \\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B.A#Master's Degree\\n\tM.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A#Master's of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A#Master's#B.E: Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.B.A#Master's#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A#Master\\nof Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.B.A#Master#Licentiate (Bachelor) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.A#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.B.A#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.B.A#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B.A#Masters of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.B.A#Masters of Health Management#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.B.A#MBA degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.B.A#MBA#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.B.A#Peru Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.A#Ph.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.A#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.B.A#THUNDERBIRD#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.B.A#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.A#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.B.A#WASHINGTON 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.B.AFinance#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.B.C.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.B.B.C.H (Bachelor of Medicine and Bachelor of Surgery) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.B.B.Ch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.B.B.CH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.B.CH\tBachelor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.B.B.Ch. Bachelor of Medicine and surgery  (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.B.Ch. Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.B.B.Ch. Bachelor of Science and Medicine    (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   48 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.B.B.S (Bachelor of Medicine and Bachelor of Surgery) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.B.B.S (Bachelor of Medicine and Bachelor of Surgery)#B#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B.B.S (Bachelor of Medicine and Surgery) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.B.B.S (Bachelor of Medicine, Bachelor of Surgery) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.B.S (Bachelor of Medicine, Bachelor of Surgery)#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.B.B.S (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.B.S (MEDICINE)#BACHELOR OF MEDICINE & BACHELOR OF SURGERY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.B.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.B.B.S, M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.B.S, Medicine and surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.B.S. Bachelor of Medicine and Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.B.B.S. Degree#Doctor of Medicine / First professional degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.B.S#Bachelor in Medicine & Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.B.B.S#Bachelor of Medicine and Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.B.B.S#Bachelor of Medicine and Bachelor of Surgery#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               M.B.B.S#Bachelor of Medicine and Bachelor of Surgery#M.S. was English). \\n\\n\\nECFMG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.B.B.S#Bachelor of Medicine and Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.B.B.S#Bachelor of medicine, Bachelor of surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.B.B.S#Bachelor of Medicine, Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.B.B.S#Bachelors of Medicine and Bachelors of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.B.B.S#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.B.B.S#Doctor of Medicine Equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.B.B.S#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.B.B.S#M.D (Pediatrics)#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.B.B.S#M.D. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.B.B.S#M.D#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.B.Ch.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.B.Ch.B. graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B.E (BUSINESS ECONOMICS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.B.P.A. Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.B.P.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.B.P.A#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.B.S. Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.B.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.B.S#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.B#B.S#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.B#Masters of Business Administration \\n(MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.BA. & M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.BA. & M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.Be 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Bin#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.C.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.C.A - Master of Computer Applications#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.C.A (Master of Computer Application) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.C.A (Master of Computer Applications) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.C.A (Master of Computer Applications)#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.C.A (Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.C.A. & M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.C.A(Master of Computer Applications)#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.C.A#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.C.A#Master of Computer Applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.C.M (Master of Computer Management) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.C.R.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.C.S .E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.C.S (Master of Computer Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.C.S, Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.C.S, Master of Science#B.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.C.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.C.S.E#ASSOCIATES DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.C.S.E#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.C.S.E#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.C#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.Ch.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.COM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.Com    \\nMasters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Com#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.CS#Master of Computer Science#Masters#Ph.D#Ph. D#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.d 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  474 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.D          \\n\\nBachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.D          Graduate#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.D (Medicine Doctor) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.D {High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.D \\n\\n\\nA.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.D 20748\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.D 20910 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.D degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.D Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.D degree#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.D Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.D expected 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.D, Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.D, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.D.    \\n*Masters' of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.D. / High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.D. / Ph.D#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.D. \\n\\nB.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.D. Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.D. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.D. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.D. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.D. diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.D. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.D. Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.D. Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.D. High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.D. School of Medicine#M.B.B.C.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.D. USA  \\nH.S. diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.D., AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.D., AA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.D., D.D.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.D., M.H.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.D., Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.D., Ph.D#Graduate#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.D., Ph.D#M.D., M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.D., Ph.D#M.D#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.D., Ph.D#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.D.] Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.D./B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.D./Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.D.\\n\t\t\tWashington D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.D.\\n\t      Associative Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.D.\\n\tM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.D.\\n\\n\\n\\n\\n\\n\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.D.\\n\\n\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.D.\\nAssociates Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.D.\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.D.\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.D.\\nBachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.D.\\nBachelors of Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.D.\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.D.\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.D.\\nM.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.D.\\nM.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.D.\\nM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.D.\\nMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.D.\\nMasters of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.D.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.D.M. Master of Design Methods 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.D.R.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.D.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.D.U#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.D\\n*Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.D\\n\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.D\\nBachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.D\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.D\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.D#A.O.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.D#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.D#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.D#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.D#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.D#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.D#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.D#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.D#B.S./M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.D#B.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.D#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.D#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.D#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.D#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.D#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.D#Bachelors of Communication B Expected 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.D#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.D#Bachelors of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.D#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.D#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.D#Diploma and License 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.D#Diploma of accomplishment 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.D#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.D#DOCTOR OF MEDICINE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.D#Doctor of Medicine and Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.D#Doctor#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.D#DPM#DPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.D#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.d#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.D#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.D#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.D#High School Diploma#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.D#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.D#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.D#M.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.D#M.B.,B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.D#M.B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.D#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.D#M.D#M.S., Ph.D.\\n\\nM.D. School of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.D#M.P.H#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.D#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.D#M.S. & Ph.D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.D#M.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.D#M.S#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.D#M.S#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.D#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.D#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     M.D#Master of Geriatric medicine and Gerontology (M.S).  \\nBachelor of medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.D#Master of Public Health (MPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.D#Master of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.D#Masters (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.D#MPH Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.D#Ph.D#M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.D#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.D#Postdoctoral 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.D#Postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Div 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   40 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.DIV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.Div in Masters of Divinity#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Div#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Div#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Div#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.Div#NBC&S, MD#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.Divinity/M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  179 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.E (Master of Engineering) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.E ROBOTICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.E. (Master of Engineering) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.E. (Masters of Engineering) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.E. Cybersecurity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.E. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.E. Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.E. Engineering Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.E., Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.E.(hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.E.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.E.d 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.E.D#M.E.D. TEACH FOR CHANGE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.E.E#B.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.E.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.E.M (Master of Engineering Management) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.E.M, Master of Engineering Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.E.M#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.E.N.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.E.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.E.S Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.E.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.E#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.E#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.E#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.E#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.E#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.E#M.A#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  554 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.Ed Curriculum 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Ed degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Ed Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.Ed Early 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.Ed Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.Ed Secondary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.Ed. \t(Administration & Supervision) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Ed. - Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.Ed. and Licensure 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Ed. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Ed. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.Ed. Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.Ed. Education (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.Ed. Education Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.Ed. Education#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.Ed. graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.Ed., B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Ed., EDCI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.Ed., Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Ed., Masters of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Ed#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Ed#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Ed#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.Ed#B.A#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Ed#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Ed#B.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Ed#B.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.Ed#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Ed#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.Ed#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.Ed#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Ed#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.Ed#Learning Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.Ed#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Ed#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.Ed#M.Ed#M.S#M.S#B.S#B.A#A.A.S#B.B.(ASCP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Ed#M.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Ed#Master of Arts#B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Ed#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Ed#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       M.Ed#Masters of Education Management#B.A.   Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Ed#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.Ed#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Ed#P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Ed#Postgraduate#PGP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   98 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.ENG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Eng degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.Eng. Electrical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.Eng#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.ENG#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.Eng#B.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.Eng#BACHELORS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Eng#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.ENG#Master of software 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.Eng#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.Engg 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.Engr 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.Engr#Republic of Nigeria 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.F. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.F. A#Master of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  102 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.F.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.F.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.F.A#B.A#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.F.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.F.A#B.S#B.S#B.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.F.A#BA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.F.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.F.A#master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.F.A#Masters#M.F.A. (Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.F.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.F.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.FA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.FA#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.G.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.G.A.   (Graduate degree#M.A.   (Graduate degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.G.A. (Graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.G.A. (Master of General Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.G.A./MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.G.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.G.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.H. Podd, Ph.D. and R.D. McCullah, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.H.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   33 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.H.A - Master of Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.H.A.  \t\t\t\t\t  \t\\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.H.A.  \t\t\t\t\\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        M.H.A. / M.B.A#Master of Science#Master of\\n\\n\\n\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.H.A. \\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.H.A. \\nMAJOR:  Joint JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.H.A. \\nMAJOR#Master of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.H.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.H.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.H.A#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.H.M (Master of Health Management) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.H.M#B.S., (HCM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.H.R.M. & M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.H.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.H.S. (Master of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.H.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.H.S.A#III 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.I.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.I.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.I.M./ MBA, Masters of International Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.I.M#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.I.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.I.P.P#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.I.S. G.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.I.S. Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.I.S. Masters of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.I.S.M, Masters of Information System Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.I.S.M#Master of Information Systems Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.I.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.I.S#Master of \\nInformation \\nScience#Post-graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.I.S#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.I.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.J 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.J.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.J#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.L 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.L.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.L.A. (Master of Liberal Arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.L.A#Master of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.L.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.L.I.S.-Masters of Library & Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.L.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   44 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.L.S and Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.L.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.L.S#M.Ed#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.L.S#Master of Library Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Lib 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.Litt 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   56 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.M .Washington HS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.M.   Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.M. (Masters of Music) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.M. Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.M. Washington 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.M. Washington CHS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.M. Washington CHS#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.M. Washington CSHS High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.M. Washington HS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.M. Washington S.H.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.M.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.M.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.M.E.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.M.S#Masters#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.M#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.M#Bachelor of Science of Exercise Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.M#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.M#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.M#Diploma#High School graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.M#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.M#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.M#Master of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.M#Masters of Management#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.M#Masters of Music Performance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Med 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Med. (Master of Medicine) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Mus 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.MUS. ETHNOMUSICOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.N#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.O.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.O.S#M.O.S#M.O.S#M.O.S#M.O.S#H.D.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.O\\nMaster Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.p 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.P. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  152 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.P.A Graduate#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.P.A. and M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.P.A. Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.P.A. Master's of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.P.A. Masters#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.P.A#A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.P.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.P.A#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.P.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.P.A#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.P.A#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.P.A#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.P.A#Master of Public Administration#B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.P.A#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.P.A#Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.P.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   52 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.P.H (Master of Public Health) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.P.H (Masters of Public Health) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.P.H, Masters of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.P.H. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.P.H.\\n\\n\\nPOST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.P.H#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.P.H#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.P.H#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.P.H#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.P.H#M.D#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.P.H#M.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.P.H#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.P.H#Master of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.P.H#Master's#B.S.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.P.H#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.P.I.A. (Masters of Art) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.P.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.P.M#Master of Project Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.P.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.P.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.P.P#Master of Public Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.P.R 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   91 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.P.S (Master of Policy Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.P.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.P.S. - Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.P.S. Cybersecurity Graduate#Bachelor of Science#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.P.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.P.S.A. (Masters of Art) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.P.S.H.R 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.P.S.H.R#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.P.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.P.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.P.S#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.P.S#Master of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.P.S#Masters of Paralegal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.P.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.P#B.Sc#M.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.P#Master of Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.P#Master of Planning\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.PA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   50 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.PHIL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.Phil. & Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.Phil. Linguistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.Phil#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Phil#Master of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Phil#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.Pr.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Psy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.R.D.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.R.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.R.E. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.R.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.R.P (Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  m.s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                14185 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S  IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S - Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S - MOE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S (Bachelor of Homeopathic Medicine and Surgery) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S (Master of Computer Applications) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S (Master of Science#B.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.S (Professional Science Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S (Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S & ABD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S and B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S and MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S AND PH.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.S biotechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S CHEMICAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S COMPUTER SCIENCE#SYSTEMS, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S Degree#B.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S Degree#Master of Aeronautical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S Master Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S PHYSICIAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S political science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S PSG Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S Structural Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S SYSTEMS ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S TAXATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S Tech (Applied Geophysics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S,  A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S, MASTER OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S: DEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S.   Executive Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S.  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S. (ABT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S. (EOH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.S. (Equiv) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S. (Hon 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S. (M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S. (Masters of Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S. (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S. (MHA)#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S. (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S. / B.S#Bachelor's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S. / M Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S. / Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S. /M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S. \\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S. & Ae.E (PhD without dissertation) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S. & B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S. & Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S. & Ph.D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S. A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S. A#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S. and B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S. and BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S. and Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S. and Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S. and Ph.D. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S. and Ph.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S. Associates of DC#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S. Associates of DC#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S. Biotechnology degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S. COMPUTATIONAL PHYSICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S. COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S. Conflict Resolution 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S. CRIMINAL JUSTICE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S. Cybersecurity & MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S. DATA ANALYTICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   58 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  147 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S. degree#A.A.S. degree#B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S. Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S. Degree#B.E. Degree#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S. degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S. degree#B.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S. degree#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S. Degree#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S. degree#B.S. degree#A.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S. DEGREE#B.S. DEGREE#A.A.S. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S. degree#B.S. degree#B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S. degree#Bachelor''s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.S. Degree#Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S. degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S. Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S. Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S. degree#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S. degree#NM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S. Degree#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S. E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S. Ed.S CAGS#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S. Ed#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S. Ed#B.S. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S. Ed#Changes 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S. EDUCATIONAL PSYCHOLOGY#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S. Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S. ENVIRONMENTAL BIOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S. equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S. FINANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S. graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S. Graduate School of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S. Graduate#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S. HR#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S. HRD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S. HRD#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S. I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S. Info. Sys. & Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S. INFORMATION SYSTEMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S. ISE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S. IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S. M.E#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S. Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S. MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S. Management of Technology (MS-MOT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S. Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S. Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S. Master#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S. Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S. Masters of Cyber Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S. Masters of Information Assurance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S. Masters of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S. Masters of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S. NE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S. of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S. of Applied Geochemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S. of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S. of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S. of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S. of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S. of Health Sciences Informatics#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.S. of Logistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S. of management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S. of Medical Cybernetics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.S. of Microbiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.S. of Oceanography 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S. of Physiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S. of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S. Software Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S. Tech. Comm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S. W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S., (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S., Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S., Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S., master of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S., Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S., Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.(Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S.) Masters of Science#B.S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.* *(* 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S./B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S./ITS (Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S./Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S./Ph.D#B.Sc. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S.\\n\\n\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S.\\n\\n\\nB.S.\\n\\n\\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S.\\n\\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S.\\n\\nB.S.\\n\\nDIPLOMA\\n\\nDIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  105 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S.A (Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S.A Master of Science in Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.S.A. Master of Science in Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S.A.C - Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S.A.C Masters of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S.A.C, Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.A#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S.A#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.Acy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S.B.A#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.S.B.T.E#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.B.T#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.B#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S.C.E#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S.C.E#M.A#B.S.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S.C.E#Masters of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S.C.I.S., Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S.C.R.P., (Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.C.S#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.C.S#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.CpE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   54 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S.E.C.E (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   77 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S.E.E Dept 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S.E.E. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S.E.E#B.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S.E.E#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.E.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.E#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S.E#B.S.E#B.S.E Bioengineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S.E#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S.ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S.ED#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S.F 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.F, Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.F.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.H.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.I.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.I.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S.I.R#B.S.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.I.S Conc#B.S.I.S Conc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S.I.S. (Master of Science#M.S.C.T. (Master of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S.I.S.T - Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.I.S#Master Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.I#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S.J 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.J#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.J#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.L.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.L.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.L.S#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.L.S#MASTER OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S.M. & M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S.M.E#B.S.M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S.M.S#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.M#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.N.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S.N#B.S#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.P.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S.P.H#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S.P.H#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.P.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.R.C#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S.S.A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S.S.E. Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S.S.L. - Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S.T.C. Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S.T.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S.T.M#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.T.M#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   80 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S.W.\tMaster of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S.W. (Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S.W. (PMIR) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.S.W. COUNSELING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S.W. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S.W. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S.W. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.W#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S.W#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S.W#BACHELOR OF ARTS#B.A.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S.W#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.S.W#Master of Social Work#M.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S.W#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S.W#Master's of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S.W#Masters of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S(ABT)#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S) Masters#B.D.S) Bachelor of Dental Surgery#B.D.S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S* (Master of Surgery) Ophthalmology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S/ M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#A.A.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#A.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#A.T#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.S#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#B. B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S#B. E#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#B. TECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  138 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S#B.A. DOUBLE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#B.A#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#B.A#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S#B.B.A#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S#B.B.A#Btec. National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#B.B.A#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#B.C.S#M.S#M.S#Diploma#Ph.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S#B.E (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  534 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#B.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S#B.S. C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#B.S. CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#B.S. degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#B.S. reqmts#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#B.S., Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.S#B.S.&M.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#B.S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#B.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#B.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S#B.S.H. Biological Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#B.S.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#B.S.N#R.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#B.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#B.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#B.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#B.S#Assoc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#B.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#B.S#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.S#B.S#B.S. and M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#B.S#B.S#A.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#B.S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S#B.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#B.S#Diploma#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S#B.S#DIPLOMAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S#B.S#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#B.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#B.S#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#B.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S#B.S#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S#B.S#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#B.S#MD#B.Sc. (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#B.S#PGDCA, Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#BA#Joint degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#Bachelor in Technology (B.Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.S#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.S#Bachelor of Civil Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#Bachelor of Education#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#Bachelor Of Engineering  (B.E.) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#Bachelor of Science#B.S#High School\\nDegree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S#Bachelor of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S#Bachelor of Traditional Chinese Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S#Bachelor's#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S#Bachelors of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#Bachelors of Science degree#Associates Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#Biochem. & Mol. Bio 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S#BS#Master's Degree of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.S#CaliforniaB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#CAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#CERT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#CGPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#CHINA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#computer science graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#conc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#DCBachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S#degree#B.5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S#Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S#DEGREE#B.S.\tMAJOR#A.A.\tMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S#Diploma#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#Diploma#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S#Distinguished Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#Ed.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S#Ed.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#Ed.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S#EXPECTED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S#FRANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S#GIS#M.S#M.Tech#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S#Graduate Certificate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#Graduate#M.S#Graduate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#Graduate#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S#Graduate#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.S#Graduate#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#I.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#Iowa. B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#ITSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#J.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S#J.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#J.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S#Joint Masters Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#KOREA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.S#M.A#B.A#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S#M.A#B.A#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#M.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#M.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#M.A#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#M.B.A Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#M.B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S#M.B.A#B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#M.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S#M.B.B.S#Bachelor of Medicine and Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#M.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S#M.D#M.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#M.E#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#M.Eng#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S#M.Phil#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   91 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#M.S.\t\tMAJOR#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S#M.S. and B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.S#M.S. and Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S#M.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S#M.S. MAJOR#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#M.S.& B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#M.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#M.S.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#M.S.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#M.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S#M.S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#M.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#M.S#B.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S#M.S#B.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#M.S#B.S#B.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#M.S#B.S#BIOCHEMISTRY          \\n\\n\\nEXPERIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S#M.S#B.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#M.S#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#M.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S#M.S#M.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S#M.S#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S#M.S#Master's#associate#Ph.D#associate#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S#M.S#Masters#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#M.S#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S#M.S#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#M.Sc     Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.S#M.Sc Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S#Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#Master Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.S#Master of  Electrical and Control Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S#Master of Aeronautical Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#Master of Business Administration#Diploma#B.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#Master of Civil Engineering#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S#Master of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#Master of Computer Applications (MCA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#MASTER OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S#Master of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#Master of Science#B.S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#Master of Statistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.S#Master of Tourism Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#Master?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.S#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#Master's Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.S#Master's#B.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#Master#B.A.   Masters#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S#masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#Masters of Aeronautical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.S#Masters of Biochemistry and Molecular Biology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#Masters of Business Administration (EMBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#Masters of Cartographic and Geographic Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#Masters of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S#Masters of Forensic Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S#Masters of Human Resource Management Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.S#Masters of Leadership Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#Masters of National Security Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S#Masters of Strategic Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#Masters of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#Masters#B.B.A#A.A S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   44 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.S#MBA (dual degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#MBA#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#MBA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S#MD#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S#MD#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#MIM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S#MN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#MS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S#MS#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#MS#M.S#B.S#BS#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#MSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#NOTE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#O.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#oB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.S#of Education B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.S#Ph. D#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   46 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#Ph.D. AIIMS#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S#Ph.D. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S#Ph.D#E. S. Phinney#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.S#Ph.D#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#Ph.D#M.S. of Applied Geochemistry#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.S#Ph.D#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S#Ph.D#Ph.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S#Ph.D#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.S#PhD#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S#Post Graduate Diploma#B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#Post Graduate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#S#Master's Thesis#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#S#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.S#SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.S#science, degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.S#September. Degree#B.S./M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#September. Degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.S#TCSUH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.S#Teacher\\nof Social Science degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.S#time. B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S#Towards MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.S#U.S. Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.S#UMUC#M.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.S#V.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.S#Virginia Tech B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.S#www.seu.edu (Washington DC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1112 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Sc    Global Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.Sc  BioInformatics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Sc - Bioinformatics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Sc - Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.Sc (Chemistry) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.Sc (Electronics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.Sc (Faculty of Medicine) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Sc (Master of Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Sc (Master of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.Sc (Master's) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.Sc (Mathematics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.Sc (Software Engineering)#Salem 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc (TECH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Sc and DIC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.Sc Biotechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc Global 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.Sc Global Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.Sc Mgmt#M.B.A#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Sc Physics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.Sc, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.Sc: Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Sc. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.Sc.\tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Sc.  Cybersecurity. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.Sc.  Operations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.Sc. (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Sc. (Econs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc. (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Sc. (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Sc. (Master of Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Sc. (masters') Student#M.S. (Masters') degree#B.Sc. (Bachelors') degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.Sc. \\n\\nEMPLOYMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.Sc. & Master of Science (MSIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc. &Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.Sc. Agricultural#B.Sc.Ag.Econs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Sc. and BE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.Sc. Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.Sc. Biomedicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Sc. Botany 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.SC. BUSINESS ADMINISTRATION (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.SC. BUSINESS RESEARCH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.Sc. Civ.Env.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Sc. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Sc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Sc. Degree#B.Sc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.Sc. degree#M. Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.Sc. Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.Sc. Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc. experimental work#Biotechnology and Consulting (ILBC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.Sc. GEOGRAPHIC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Sc. IBM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Sc. In 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.Sc. in A.D.M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Sc. in Demography and B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.Sc. Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.Sc. Master#B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.Sc. Master#Bachelor of Media 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.Sc. Microbiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.Sc. of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.Sc. of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc. Pharm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.Sc. Pharmaceutical Microbiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc. Programme\\n\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.Sc. Specialized 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc. Student#B.Sc. Student 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.Sc. Studies#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.Sc. Urban Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.Sc. Water#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.Sc. Zoology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.Sc., Anthrop. and Ecology of Develop. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.Sc., B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc., B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Sc., E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.Sc., International Business Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.Sc., Master of Biological Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Sc., Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.SC., MASTER'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.Sc., Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.Sc.. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc.(Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc.(Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Sc.(Tech#B.Sc.(Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Sc.) Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc.#Master of Science#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Sc.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M.Sc#A.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Sc#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.Sc#B.C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Sc#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.Sc#B.S.J 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Sc#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Sc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.SC#B.SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.Sc#B.Sc. (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    M.Sc#B.Sc. (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Sc#B.Sc. Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Sc#B.Sc. Zoology#M.Sc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.Sc#B.Sc#B.Sc. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.Sc#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.Sc#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Sc#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Sc#Bachelor's and Master's#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.Sc#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Sc#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Sc#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.Sc#Diploma#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Sc#EMIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Sc#GIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Sc#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Sc#IUPWARE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Sc#M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.Sc#M. Sc#B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         M.Sc#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.Sc#M.A#B.Sc. Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.Sc#M.A#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.Sc#M.E#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc#M.Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Sc#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Sc#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       M.Sc#M.Sc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Sc#M.Sc#M.Sc#Post-Master (Post-M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M.Sc#Marketing Administration degree (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.Sc#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.Sc#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.sc#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M.Sc#MS/ITS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Sc#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.SC#Ph.D#Ph.D#B.S#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.Sc#Prof. A.D#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.Sc#Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.Sc#Special post graduate#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.Sc#TECHNION#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             M.Sc#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.SCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.Sci 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.St 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.SW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.T.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     M.T.A Master of Tourism Administration#B.B.A Bachelors of International Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.T.H.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M.T.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.T.S. (Masters of Theological Studies) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.Tech IIT#B.Sc ( H) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M.Tech. (Comp.\\nSci)#B.E. (E& TC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     M.Tech.; Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M.Tech.(Master of Technology) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.Th. (Master of Applied\\nTheology) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M.V 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               M.V.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 M.V.Sc {Master of Veterinary Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            M.V.SMITH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              M.V#B.V 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M(ASCP)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M/S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M#B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          M#B.A#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   M#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  M#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                M#M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      M#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           M2R Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 4000 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MA - Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MA (Honors)#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA & Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA and BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   34 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MA Degree#B.A Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MA Degree#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MA Degree#BA Degree#Diploma#G.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MA Degree#BA\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MA Degree#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MA Degree#M.B.A#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MA degree#MS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MA diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MA Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MA Diploma#MA Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MA Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MA Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MA Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MA of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MA. and PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MA. ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MA's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MA) Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MA/MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MA/MA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MA#Adv. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MA#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MA#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA#B.A#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  146 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MA#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MA#BA, Administration of Justice / BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MA#BA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA#BA#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MA#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA#BA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA#BA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MA#baccalaureate BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MA#Bachelor of Business Administration#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MA#Bachelor of Laws Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MA#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MA#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 MA#Bachelors Degree Sc. B#Bachelor of Science#MA#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MA#Bachelors of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#Bachelors#Highlands 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   44 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MA#BS Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MA#BS/BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MA#BS\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MA#BS#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MA#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MA#DC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MA#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MA#diploma of teacher of English 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MA#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MA#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MA#graduate degree#BA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MA#Graduate#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA#High School \\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA#High School Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MA#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MA#HIGHER EDUCATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MA#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA#MA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MA#MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MA#MA#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#MA#BA#BA of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MA#MA#Bangladesh. BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MA#MA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MA#Master of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MA#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#Master of Arts#BA) Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MA#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MA#Master of Arts#Bachelor of Interior Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MA#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MA#Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MA#Master of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MA#Master of Military Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MA#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MA#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MA#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA#Master's of Arts#BA#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MA#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MA#Masters Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MA#Masters Business Administration (MBA)#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MA#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MA#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA#Masters of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA#MBA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MA#MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MA#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MA#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MA#NAFTA Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MA#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MA#Ph.D#BA#TRAINING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#PHD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MA#PhD#DIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MA#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MA#Postgraduate Diploma#Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MA#Projection of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MA#RF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#RTF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#SIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MA#TESOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MA#U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MA#WV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MAA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MAAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MACOFIN#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MACROBUTTON EmptyMacro [ Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Madison\t\t\t\t\t\tBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Madison          BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Madison. B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MADISONBachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Madurai. S.India\tB.E - Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MAEd 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MAED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MAED#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MAESTRIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MAFINRISK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Magister 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Magister Artium (Master of Arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Magister Juris (BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Magister#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Magister#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Magister#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Magister#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Magister#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Magister#MBA#Bachelor?s of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Magistra iuris (Master of Law) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MAGNET Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Magnet International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MAIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Maintainer Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Maintenance Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MAIR#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MAIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Maitrise 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Maitrise (Master) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Maitrise de l'Administration des Affaires (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Maitrise#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MAJOR (S)#A.S.          YEAR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Major and Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Major Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MAJOR(S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MAJOR(S)#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MAJOR#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MAJOR#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MAJOR#Bachelor   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MAJOR#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MALS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MALS (Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MAM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MAMC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Management (Master of Business\\nAdministration)#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MANAGEMENT (SHRM)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Management Degree#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Management Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Management Graduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MANAGEMENT Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Management Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Management Strategies (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Management#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MANASSAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Manassas Va 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MANAVALAKURICHI.\\n*DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Manejo de p�liza de seguro de vida, m�dico hospitalario y de veh�culo 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MAOM) Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MARALEX 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MARCH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Marine Science B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MARKETING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Marketing and Sales Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Marketing Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Marketing degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Marketing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MARKETING DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Marketing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Martine de Clercq 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Mary M. Amsden 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Maryland 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Maryland          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Maryland     Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Maryland Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MARYLAND DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Maryland Diploma Recipient 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MARYLAND G.E.D./HIGH SCHOOL DIPLOMA EQUIVALENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Maryland H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Maryland High Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Maryland high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Maryland High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Maryland High School Diploma (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Maryland high school diploma#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Maryland State Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Maryland. B.SC. Undergraduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Maryland. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Maryland. Masters of Finance#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Maryland#Master of Business Administration (M.B.A#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MarylandB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MarylandMaster of Science#MS#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                  MarylandMaster of Science#MS#Master of Science (MS)#VirginiaBachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MAS (Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MAS of Aeronautical Science Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Maser of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Maser of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Maser's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masers of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASON'S S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASS COMMUNCATIONS(B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Mass Communication degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Mass Communication Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Mass Media#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Massachusetts, (Doctorate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Massage Therapist (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Massage Therapy (Vocational Diploma)          FCNH#Master of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Massage Therapy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Massage therapy Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Massage Therapy Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Massage therapy\\n*Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Mast 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Mast of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2976 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  108 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master\t  of\t  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master\t  of\t  Science#Master#Master\t  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master\tof\tArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master\tof\tBusiness\tAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master\tof\tScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master \t\t \t\t\t\t\t\tBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master          of          Business          Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master          of          Business          Administration          (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master          of          Information          Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master          of          Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master         of          Business          Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master         of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master       of       Business        Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master      of      Business      Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master      of Science Degree#Bachelor      of Technology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master     of      Business      Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master    of     Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master    of    Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master   of       Public       Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master   of       Sustainable 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master   of   Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master   of   Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master   of   Agriculture#M.A#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master   of   Applied   Anthropology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master   of   Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master   of   Arts   (M.A.) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master   of   Arts   (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master   of   Arts   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTER   OF   ARTS   DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master   of   Arts#Bachelor   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master   of   Arts#Master   of   Business   Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master   of   Business        Currently 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master   of   Business    \\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master   of   Business   Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master   of   Business   Administration   (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master   of   Business   Administration   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master   of   Business   Administration#Masters   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master   of   Business   and   Administration   (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master   of   Civil   Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master   of   Computer   Applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master   of   Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master   of   Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master   of   Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master   of   Entrepreneurship 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master   of   Environmental 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master   of   Environmental   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master   of   Fine   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master   of   Fine   Arts#Bachelor   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master   of   General   Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master   of   Health   service   Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master   of   Information   Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master   of   International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master   of   International   Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master   of   International   Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master   of   International   Business   Administration   (IMBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master   of   International   Business   and   Strategic   Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master   of   International   Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master   of   International   Service 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master   of   Jurisprudence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master   of   Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master   of   Liberal   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master   of   Marketing   Research 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master   of   Pacific   International   Affairs   (MPIA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master   of   Professional   Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master   of   Public   Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master   of   Public   Administration#Bachelor   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master   of   Public   Affairs   (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master   of   Public   and   International   Affairs   (MPIA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Master   of   Public   and   International   Affairs   (MPIA)#Bachelor   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master   of   Public   Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master   of   Public   Health   (MPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master   of   Public   Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master   of   Public   Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master   of   Public   Policy       Sep 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   82 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER   OF   SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master   of   Science   (M.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master   of   Science   (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master   of   Science   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master   of   Science   degree#Master   of   Science   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master   of   Science#Bachelor   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master   of   Science#Bachelor   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master   of   Science#Bachelor   of   Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master   of   Science#Master    of    Science    degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master   of   Science#Master's#Bachelor   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master   of   Social   Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master   of   Statistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master   of   Sustainable   Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master   of   Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master   of   the   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master   of   Urban   and   Regional   Planning#Bachelor   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master   of   Urban   Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master   of Business Management (MBA)#Bachelor's   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master   of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master   of Science#Master#Bachelor   of Economics#Bachelor   of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master  \\nMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master  MS#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master  of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master  of  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master  of  Arts  awarded 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master  of  Arts#Bachelor  of  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master  of  Busi ness  Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master  of  Business  Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master  of  Business  Administration  (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master  of  Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master  of  Film 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master  of  Health  Services  Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master  of  Management  (MM/MBA)#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master  of  Professional  Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master  of  Public  Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master  of  Public  Administration  (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master  of  Public  Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master  of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTER  OF  SCIENCE  (M.SC. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master  of  Science  (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master  of  Science#Bachelor of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master  of  Strategic  Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master  of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master  of Business  Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master  of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master  of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master  of Real Estate Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master  of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master  Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master  of Science\tStatistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTER 'S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER 'S CERTIFICATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master 's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master (M.S.C) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master (M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master (MIT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master \\nof Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master \\nof Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master \\nof Business Administration#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master \\nof International Management#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master \\nof Science of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master \\nof Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master & Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master & doctor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master Adm n. de Proyectos 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master and Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master and Bachelor Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master and Bachelor Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master and Bachelor of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master and Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master and Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master and Bachelor of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master and Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master and Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master and Bachelor's of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master and Bachelor#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master and Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master and BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Applied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master Aromatherapist 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Art of Religious Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master Arts Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master Bachelors of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master Barber 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master Builders Diploma#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master Builders Diploma#MBA#MMI Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Business \\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   82 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master Business Administration          Current 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master Business Administration (M.B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MASTER BUSINESS ADMINISTRATION (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master Business Administration (MBA)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master Business Administration (MBA)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master Business Administration M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master Business Administration MBA#Bachelor of Law (LLB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master Business Administration, (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master Business Administration#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master Business Administration#Master of\\nScience#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Business Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master candidate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master Cert 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTER CERTIFICATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master Certified Architect#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master Clinical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master Coach 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master Computer engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Cosmetologist\\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master Course 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master courses of Bioengineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  153 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  603 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MASTER Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MASTER DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master Degree  (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MASTER DEGREE  (MRP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master Degree (DESS)#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master degree (DESS)#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master Degree (LLM-ILSP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master Degree (M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master Degree (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Degree (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master degree (MS)#BS and MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master degree Chemistry Xinjiang 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master Degree computer Science#Master Degree MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master Degree majoring Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master Degree Master�s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master Degree of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master Degree of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master Degree of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master Degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master Degree of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Master Degree of Computer ApplicationsUniversity of Madras#Bachelor Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Degree of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                master degree of Computer Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Degree of CS. Will graduate#Bachelor Degree of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master degree of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master Degree of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master Degree of Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master Degree of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master Degree of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master degree of International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master Degree of Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master Degree of MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Degree of Multimedia Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master Degree of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master Degree of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Degree of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master degree of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master degree of Science#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master Degree of Science#Bachelor Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master Degree of Tourism Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master Degree Student of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Degree#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master Degree#Associate#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Degree#B.A#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master Degree#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    master degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Degree#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master Degree#B.sc degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master Degree#B.Sc in 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master Degree#BA degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master Degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master Degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Degree#Bachelor Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Degree#Bachelor Degree#Bachelor Degree#Associate Degree#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master degree#Bachelor degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master Degree#Bachelor Degree#MBA#BSIE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master Degree#Bachelor of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master Degree#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Degree#Bachelor of Engineering#Diploma of Technology (DUT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master Degree#Bachelor of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master Degree#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master Degree#Bachelor of Science#GED#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Degree#Bachelor's Degree  Certified by WES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master degree#Bachelor's degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Degree#Bachelors\\nDegree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master Degree#Computer Engineering Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master Degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master Degree#Degree & Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master degree#Diploma#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Degree#EDP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master Degree#Global MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MASTER Degree#High Diploma Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTER Degree#High Diploma Degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Degree#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Degree#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master Degree#M.A Degree#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master Degree#M.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master Degree#M.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master degree#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Degree#M.ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master Degree#M.S#Bachelor Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master Degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Master Degree#Master Degree#Bachelor Degree (Economics).        \\n\t\t\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master Degree#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master Degree#Master of Business Administration (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Degree#Master of Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Degree#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Master Degree#Master of Science#Bachelor Degree#Bachelor of Science#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master Degree#Master of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master Degree#Master of\\nScience#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master Degree#Master's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master Degree#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master Degree#MBA (Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Master Degree#MBA#Master Degree#Bachelor Degree#BBA#Bachelor of Business & Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Degree#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master Degree#of Civil Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master Degree#Polytechnic of Turin#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master Degree#Projected Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master Degree#Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master degree#U.S. bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Degree#UFF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master Diploma#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master Education Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master Education Administration, (M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master Education Administration, (M.Ed#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master Electrician's License 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master Environmental Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master Equivalent (DESS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master equivalent Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master Equivalent of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Esthetician 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master Esthetician License 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master Esthetics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master Esthetics License 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master Esthetics#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master ETP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master for Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Gardner 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Health Administration (MHA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master Health Services Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master Herbalist Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master Human Resource Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master if Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master in Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master in Auditing (Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master In Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master in Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master in Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master in Business Administration degree (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master in Business and Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master in Economics degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master in Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master in Engineering (M. Eng) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master in Engineering (ME) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master in IMBA#Bachelor's degree#Baccalaureate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master in Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master in Planning and Administration of Telecommunication Systems#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master in Research 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master in Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master in Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master in Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master in Science of Telecommunication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                         Master in Science#M.S.P.H.) and Doctor of Philosophy (Ph.D#Master in Science Degree#M.S#Master in Science Degree#M.S#Master of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master in Social Welfare student (MSW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master Information System 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master inOptoelectronicsandQuantumElectronics Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Instructor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master Instructor#U.S#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master International, (CIM)#Master's degree#MBA#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master is of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Level (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master License 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master Make 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master Mariner (Master FG) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master Mason 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master MCSIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master MEDEA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master MiMeC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master MS#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master Of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTER OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of   Master of   Business   Administration  Degree  ( MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of  Arts Business#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of  Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of  Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of  Business  Administration  (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of  Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTER OF  BUSINESS ADMINISTRATION\tYEARS ATTENDED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of  Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of  Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of  Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of  Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of  Engineering (M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of  Fine Art's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of  Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of  Health Care Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of  Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of  MHA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of  Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of  Public Administration (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of  Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of  Science#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of  Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of  Science#Bachelors of Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of  Science#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of  Science#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of .Science (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of \\n\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of \\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of \\nBusiness Administration#L. D#Bachelor of \\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of \\nDivinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of \\nEconomics#Abitur#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of \\nForest Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of \\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of \\nSciences degree#Bachelor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  293 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF ACCOUNTANCY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Accountancy          December 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Accountancy - MAcc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Accountancy (M. Acc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Accountancy (M.Acc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Accountancy (MAccy) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Accountancy CPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Accountancy Curriculum 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Accountancy Leadership Award 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Accountancy Merit 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Accountancy\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Accountancy#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Accountancy#Bachelor of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Accountancy#Bachelor of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Accountancy#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Accountancy#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Accountancy#Master of Accountancy Academic Excellence Award 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Accountancy#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of AccountancyJan 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  106 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Accounting (MSAC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Accounting (MSAC)#Master of Business Administration (MBA)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Accounting and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Accounting and Financial Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Accounting and Financial Management. (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Accounting Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Accounting Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Accounting Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Accounting#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Accounting#Master's#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Accounting#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Accounting#Post Graduate Diploma#Master of Commerce#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Acct and Financial Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Acquisition & Contract Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Acquisition Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Acquisition Management (MAM) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Acquisition Management Degree Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Administration (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Administration and \\nSupervision 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Administration Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Administration of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Administration, Finance. (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Administration#Bachelor's Degree#Associates Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Administrative Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Administrative Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MASTER OF ADMINISTRATIVE SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Administrative Science. MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Administrative Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Administrative Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Adminstrative Science (MAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Adult 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Adult Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Advanced European Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Aeronautical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Aeronautical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Aeronautical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   37 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Of Aeronautical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Aeronautical Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Aeronautical Science Degree#Master of Aeronautical Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Aeronautical Science\\n*Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Aeronautical Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Aeronautical Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Aeronautical Science#Bachelor of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Aeronautical Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Aeronautical Science#M.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Aeronautical Science#M.A.S#Bachelors of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Aeronautical Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Aerospace Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Aerospace Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Africa 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Agricultural 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Agriculture#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Agriculture#M.A#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Analytics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Anthropology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Application Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Applied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of APPLIED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Applied \\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Applied American 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Applied and Industrial Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Applied Anthropology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Applied Behavioral Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Applied Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Applied Economic Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Applied Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Applied Economics#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Applied Economics#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Applied Geography 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Applied Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Applied IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Applied Linguistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Applied Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Applied Politics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Applied Positive 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Applied Project Management#Master of Contract Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Applied Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Applied Science Transportation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Applied Science(MASc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Applied Science#W.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Applied Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Applied Social Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Applied Social Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Applied Statistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of APPLIED STATISTICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Applied Statistics#M.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Archaeology#Bachelor of Anthropology#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Architectural Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               master of architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  137 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTER of ARCHITECTURE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTER OF ARCHITECTURE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Architecture (M. Arch) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Architecture (M. ARCH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Architecture (M.Arch) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Architecture & Housing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Architecture and Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Architecture and Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Architecture and Urban Design#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Architecture and Urban Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Architecture Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Architecture II 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Architecture Professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Architecture Real 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Architecture, M arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Architecture.  Professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Architecture\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Architecture\\nMasters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Architecture#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Architecture#Bachelor of Architecture, Faculty of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Architecture#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Architecture#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Architecture#Bed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Architecture#Evaluated as B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Architecture#Master and Bachelor of Architecture Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Architecture#Master of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Architecture#Master of Architecture (M.Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Architecture#Master of Construction Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Architecture#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Architecture#Professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Archives and Records Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  207 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MASTER OF ART 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Art\t\t\t\t      Seoul 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Art  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Art (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Art Administration#Bachelor of Science Degree#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Art and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Art and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Art degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Art Degree#Bachelor of Art Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Art degree#Bachelor of Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Art Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Art Degree#Master of Science/Engineer Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Art Health Care Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Art History 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Art in (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Art Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Art of Teaching 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Art, EAP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Art, Sociology of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Art#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Art#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Art#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Art#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Art#Bachelor of Fine Arts#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Art#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Art#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Art#Bachelor's of\\nFine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Art#Bachelor\\nof Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Art#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Art#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Art#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Art#Master of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Art#Master of Art#Master of Art#Master of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Art#Master of Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Art#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Art#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Art#Masters' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Art#MO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Artificial Intelligence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 8510 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of ARts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MASTER of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MASTER of ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MASTER OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  138 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts\t\t\tIndividualized Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts\tBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts          Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts          Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts          Expected Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts    Conflict Resolution 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts  Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts  K 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts  Teaching (Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts - MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF ARTS - PUBLICADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts : Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts : Research Methodology and Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts (Combined BA/MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTER OF ARTS (EQUIVALENT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts (Honours) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts (joint degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts (M. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts (M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   76 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts (M.A.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts (M.A.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts (M.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts (M.A)#Masters' degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts (M.A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts (M.A#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts (M.A#Bachelor of Arts (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts (M.A#Bachelor of Arts (B.A#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts (M.A#Bachelor of Arts (B.A#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts (M.A#Bachelor of Arts (B.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Arts (M.A#Bachelor of Arts (B.A#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts (M.A#Bachelor of Arts (B.A#Master of Social Work (M.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts (M.A#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts (M.A#Bachelor of Science (BS)#Accelerated Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts (M.A#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts (M.A#Bachelor of Science#B.S#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts (M.A#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts (M.A#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts (M.A#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts (M.A#Bachelor's Degree#Senior Secondary School Certificate Exam#S.S.S.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts (M.A#C.A.S.C.A.D.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts (M.A#Master of Arts (M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts (M.A#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts (M.A#Master of Science (MSc)#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts (M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts (M.ED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts (MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  152 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTER OF ARTS (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts (MA) Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts (MA)#Bachelor Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts (MA)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTER OF ARTS (MA)#BACHELOR OF ARTS (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts (MA)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Arts (MA)#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts (MA)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts (MA)#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts (MA)#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts (MA)#BS) and Economics (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts (MA)#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts (MA)#Master of Administrative Science#Master of Liberal Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts (MA)#Master of Arts (MA)#Bachelor of Fine Arts (BFA)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts (MA)#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts (MA)#MHR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts (MA)#SAIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts (MALS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts (Management) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts (MLS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts (Music) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts (Musicology), Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts (Poli' Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Arts (Terminal Degree)#Discontinuation of Ph.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts [MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Arts \\nMaster of Economics degree. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts & Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Arts Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts and Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts and Bachelor of Artsin Financial Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts and Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts and Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts and Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts and Religion 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts and Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts and Teaching 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts awarded 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts candidate (joint degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts Clinical Psychology (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   63 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  237 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF ARTS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts Degree\tBachelor Of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts Degree (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts degree#Associate of Applied Science\\ndegree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts Degree#B.A#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts Degree#Bachelor of Arts Achieved#Associates of Arts Degree Achieved 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Arts degree#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Arts Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts degree#Bachelor of Arts degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts degree#Bachelor of Arts#Associate of \\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts Degree#Bachelor of Arts#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts Degree#Bachelor of Arts#Associates of Arts Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts Degree#BACHELOR OF FINE ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts degree#Bachelor of Music degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts degree#Bachelor of Science degree#Associate in Applied Science degree#Associate in Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts Degree#Bachelor of Science Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts Degree#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts degree#Bachelor's Degree#Masters of Arts Degree#Master's Degree) and B.ED Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts Degree#CERTIFICATES (S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Arts degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts Degree#Master of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts Degree#Master of Arts Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts Degree#Master of Arts#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts Degree#Master of Science Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts Degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MASTER OF ARTS DEGREE#Master#BACHELOR OF ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts Department of Theatre 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Arts Education \\n\\nMaster of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts Education Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts Ethics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts healthcare administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts in (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts inHuman Resources Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts Interdisciplinary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts of Public Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts of Social Ethics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts of Spanish 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts Organizational#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts Rehabilitation Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts Teaching Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Arts Urban Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts-MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts, (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts, (MA)#Bachelor of Arts, (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts, ABD#Doctor of Philosophy\\n\\nMaster of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts, Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts, Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts, Degree#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts, Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts, IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts, ITM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts, MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts, Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts, Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts, Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts, Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts, of Tourism Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts, U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts:  Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts: Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts: THEOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master Of Arts. Theater#Bachelor Of Arts#Associate Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts(MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts/ABD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts/MA#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts/Master of Theological Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts/Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts\\n*Master of Human Resource 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#20016 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Arts#A.B. Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#ABA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts#Atlantic Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts#B.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts#BA) Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts#Bachelor & Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts#Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts#Bachelor of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  247 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts#Bachelor Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MASTER OF ARTS#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts#Bachelor of Arts and Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#Bachelor of Arts#A. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts#Bachelor of Arts#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts#Bachelor of Arts#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts#Bachelor of Arts#Associate of Applied Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts#Bachelor of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Of Arts#Bachelor Of Arts#Associate Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts#Bachelor of Arts#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts#Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts#Bachelor of Arts#Bachelor of Arts Criminal Justice degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#Bachelor of Arts#Bachelor of Mathematical Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts#Bachelor of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts#Bachelor of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts#Bachelor of Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts#Bachelor of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts#Bachelor of Arts#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts#Bachelor of Arts#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#Bachelor of Arts#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#Bachelor of Arts#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts#Bachelor of Arts#Nursing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts#Bachelor of Arts#Professional 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts#Bachelor of Arts#Secondary School Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Of Arts#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts#Bachelor of Business Administration#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts#Bachelor of General Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts#Bachelor of General\\nStudies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts#Bachelor of Individualized Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts#Bachelor of Interior Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts#Bachelor of Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#Bachelor of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   99 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts#Bachelor of Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#Bachelor of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#Bachelor of Science#Associate of Arts Degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts#Bachelor of Science#Bachelor of Arts#Bachelor of Arts#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts#Bachelor of Science#CUNY Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts#Bachelor of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts#Bachelor of Science#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts#Bachelor of Science#TN#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts#Bachelor of Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#Bachelor of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts#Bachelor of\\nPublic Administration#Associates of Applied Science Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts#Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts#Bachelor\\nof Arts#Juris Doctor\\nDegree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#Bachelor\\nof Arts#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Arts#Bachelors of Science Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#CCT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts#Communications & Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts#Culinary Education          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts#Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts#DEVM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts#Distinguished Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#Doctor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts#Doctor of Law#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts#Doctor of Medicine Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts#EU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Arts#Graduate Degree#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts#Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts#Graduate#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts#Graduate#Master of Governance & Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts#Graduate#Master of Governance & Leadership#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts#Indies Jamaica Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts#Intermediate#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#IPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#Juris Doctorate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts#Jurist Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts#Learning Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Of Arts#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts#M.A. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts#M.A. Ed.H.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts#M.A.L.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts#M.A.R.S#Juris Doctorate#J.D#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts#M.A.R#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#M.A.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts#M.A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Arts#M.S. Ed.S CAGS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#MA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts#Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts#MAPW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts#Master of  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Arts#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#Master of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts#Master of Arts#Bachelor of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts#Master of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts#Master of Arts#Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts#Master of Arts#Bachelor\\nof Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts#Master of Arts#Master of Aeronautical Science#UNDERGRADUATE DEGREE#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Arts#Master of Arts#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Arts#Master of Arts#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts#Master of Arts#Master of Arts#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts#Master of Business Administration#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts#Master of Corporate Secretaryship 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts#Master of Divinity May#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts#Master of Education#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#Master of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts#Master of Fine Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts#Master of Government Administration#Master#M.A#M.G.A. (Master of Government Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Arts#Master of Library and Information\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts#Master of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts#Master of Philosophy (M.Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                             Master of Arts#Master of Public Administration#Bachelor of Science#Bachelor of Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts#Master of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#Master of Science#Master of Public Administration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts#Master of Science#Strategic Intelligence Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Arts#Master's and Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts#master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Arts#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts#Master's Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#Master's#B. S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts#Master\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts#Master#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts#Masters Degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts#Masters of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#Masters of Arts#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Arts#Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts#Masters#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts#MBA#Bachelor of Science#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts#MED Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Arts#MO#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts#MO#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Arts#MS#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Arts#of Broadcasting Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Arts#Political Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Arts#Postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts#Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTER OF ARTS#PUBLIC ADMINISTRATION (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts#Second Professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#SIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#T.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Arts#U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTER OF ARTS#U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Arts#U.S. Juris Doctor#Master of\\nArts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Arts#UCLA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Arts#UDB#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Aviation Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Banking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Behavioral Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Biblical Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Bio 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Biochemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Biochemistry (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Bioinformatics (M.Bin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Biological Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Biology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Biomedical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Biomedical Engineering#Bachelor of Biomedical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Biomedical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Biomedical Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Bioscience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Bioscience Regulatory Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Biostatistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Biotechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Biotechnology (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Biotechnology (MS /MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Biotechnology Enterprise and Entrepreneurship (MBEE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Biotechnology Enterprise and Entrepreneurship#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of biotechnology management#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Biotechnology Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Biotechnology#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Botany and Mycology (MSc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Broadcast Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Building Construction 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Bus. Admin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Busines Administration (MBA)#Bachelor of HND Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   64 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTER OF BUSINESS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business          Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business  Administration (M.B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MASTER OF BUSINESS - MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business ( MBA ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business (Management) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business (MBA)#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business \\n      Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business \\n   Administration#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business \\n\\nAdmin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business \\n\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business \\n\\nAdministration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business \\n\\nAdministration#Bachelor of Science (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business \\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business \\nAdministration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business \\nAdministration (MBA)#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business \\nAdministration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business \\nAdministration#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business \\nAdministrationMay 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business & Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business & Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business A dministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Adm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Admin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Admin (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Admin. [MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Admin#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Admin#Bachelor of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Admin#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                 Master of Business AdminiMaster of Business AdminiMaster of Business AdminiMaster of Business Administrationstrationstrationstration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administra 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administra on (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administrating 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    master of business administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of business administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                11040 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Of Business administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master OF BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MASTER of BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MASTER OF BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  231 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration\t\t\t\t\t\t\tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration\t\t\t\t\tBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration\t\t\t\tBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration\t\t \t\t\t\t\t\t\tConferred 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration\t\tBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration\t\tBachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration\t\\nB.A (Honors)#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration\tBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration\tMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration          \\n*Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration          \\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration          Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration          Bachelor of Electrical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration          Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration          Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration    \\nPharm.D Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration    Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration    Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration    Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration   (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTER OF BUSINESS ADMINISTRATION   (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration   MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration  (M.B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration  (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration  & Master of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration  MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MASTER OF BUSINESS ADMINISTRATION - ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MASTER OF BUSINESS ADMINISTRATION - CANDIDATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTER OF BUSINESS ADMINISTRATION - FINANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTER OF BUSINESS ADMINISTRATION - MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration - mba ( 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration ----- 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of business administration ; 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF BUSINESS ADMINISTRATION ; MASTER OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration ( MBA ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration ( MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration (ACBSP accredited) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (dual degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration (EMBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration (EMBAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration (Executive)\\n (College of Business Administration)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (Global MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration (Hon.) conc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration (IMBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration (IMBA)#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF BUSINESS ADMINISTRATION (International MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTER OF BUSINESS ADMINISTRATION (INVESTMENT MANAGEMENT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration (M. B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   87 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MASTER OF BUSINESS ADMINISTRATION (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration (M.B.A.) Acquisition 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration (M.B.A.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration (M.B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   40 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration (M.B.A)#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration (M.B.A)#Master of Science (M.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration (M.B.A)#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration (M.B.A#Associate of Arts (AA)#BS#BA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration (M.B.A#Associate of Science (A.S#Bachelor's Degree#Associate of Arts (AA)#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration (M.B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (M.B.A#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (M.B.A#B.G.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration (M.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration (M.B.A#BA#High School\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration (M.B.A#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration (M.B.A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (M.B.A#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration (M.B.A#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration (M.B.A#Bachelor of Business Administration (B.B.A#Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration (M.B.A#Bachelor of Engineering (BE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration (M.B.A#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         MASTER OF BUSINESS ADMINISTRATION (M.B.A#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration (M.B.A#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration (M.B.A#Bachelor of Science (BS)#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration (M.B.A#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration (M.B.A#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration (M.B.A#Bachelor of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration (M.B.A#Bachelor of Technology (B.Tech#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration (M.B.A#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration (M.B.A#Bachelor s Degree#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration (M.B.A#Bachelor s Degree#Doctor of Philosophy (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration (M.B.A#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration (M.B.A#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration (M.B.A#Bachelor's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration (M.B.A#Bachelors of Science#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration (M.B.A#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration (M.B.A#Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration (M.B.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration (M.B.A#M.S.M.)\\nDegree#Master's Degree#B.S#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration (M.B.A#M.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration (M.B.A#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration (M.B.A#Master degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration (M.B.A#Master of Arts#M.A#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration (M.B.A#Master of Business Administration (M.B.A#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration (M.B.A#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration (M.B.A#Master of Public Administration (M.P.A#Bachelor of Business Administration (B.B.A#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration (M.B.A#Master of Science (M.S#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration (M.B.A#Master of Science (M.S#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration (M.B.A#Master's degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration (M.B.A#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration (M.B.A#MBA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (M.B.A#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration (MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (MBA / EMBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of business administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1889 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master Of Business administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master Of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTER OF BUSINESS ADMINISTRATION (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   51 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (MBA)\tMaster of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration (MBA) & Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration (MBA) & Master of Finance (MSF)#Bachelor of Science (BS)#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration (MBA) & Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (MBA) & Master of Security Analysis#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration (MBA) Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (mba) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (MBA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration (MBA). European MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (MBA).............#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration (MBA)\\n*Masters of Health#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration (MBA)\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration (MBA)\\nMaster of Mathematics (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration (MBA)\\nMaster of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration (MBA)#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration (MBA)#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration (MBA)#B. Sc (H) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration (MBA)#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration (MBA)#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration (MBA)#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration (MBA)#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration (MBA)#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration (MBA)#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration (MBA)#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration (MBA)#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration (MBA)#Bachelor of Applied Science#Associate of Science (AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration (MBA)#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration (MBA)#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration (MBA)#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration (MBA)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration (MBA)#Bachelor of Arts\\n(BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration (MBA)#Bachelor of Arts#Bachelor of Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration (MBA)#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTER OF BUSINESS ADMINISTRATION (MBA)#BACHELOR OF BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration (MBA)#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration (MBA)#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                Master of Business Administration (MBA)#Bachelor of Business Administration (BBA)#Bachelor of Business Administration (BBA)#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration (MBA)#Bachelor of Business Administration\\n(BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration (MBA)#Bachelor of Business Management, (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration (MBA)#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration (MBA)#Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration (MBA)#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration (MBA)#Bachelor of Engineering (BE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration (MBA)#Bachelor of Engineering#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration (MBA)#Bachelor of Liberal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration (MBA)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration (MBA)#Bachelor of Science (B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration (MBA)#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Of Business Administration (MBA)#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration (MBA)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration (MBA)#Bachelor of Science (BSc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration (MBA)#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration (MBA)#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration (MBA)#Bachelor of Science#B.S#Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration (MBA)#Bachelor of Science#B.S#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration (MBA)#Bachelor of Science#B.S#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration (MBA)#Bachelor of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration (MBA)#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration (MBA)#Bachelor?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration (MBA)#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration (MBA)#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration (MBA)#Bachelor's degree#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration (MBA)#Bachelor's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration (MBA)#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration (MBA)#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (MBA)#Bachelors of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration (MBA)#Bachelors of Arts (BA)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration (MBA)#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration (MBA)#Bachelors of Science (BS)#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration (MBA)#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (MBA)#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration (MBA)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration (MBA)#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration (MBA)#Diploma#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration (MBA)#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration (MBA)#Graduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration (MBA)#Higher National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration (MBA)#Institute of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration (MBA)#JCSU#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration (MBA)#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (MBA)#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration (MBA)#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration (MBA)#Master of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration (MBA)#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration (MBA)#Master of Business Administration (MBA)#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration (MBA)#Master of Business Administration (MBA)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration (MBA)#Master of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration (MBA)#Master of Commerce and Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration (MBA)#Master of Computer Science#Bachelor of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (MBA)#Master of Education#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration (MBA)#Master of Engineering (M.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration (MBA)#Master of Engineering (M.Eng#Bachelor of Science#B.S#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration (MBA)#Master of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration (MBA)#Master of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration (MBA)#Master of International Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration (MBA)#Master of Public Administration (MPA)#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration (MBA)#Master of Public Policy (MPP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration (MBA)#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration (MBA)#Master of Science (M.S#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (MBA)#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration (MBA)#Master of Science (MS)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration (MBA)#Master of Science (MS)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (MBA)#Master of Science (MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration (MBA)#Master of Science#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration (MBA)#Master of Science#MS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration (MBA)#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration (MBA)#Master's Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration (MBA)#Master's#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration (MBA)#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration (MBA)#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration (MBA)#Masters of Economics#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration (MBA)#Masters of Modern Languages#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration (MBA)#Masters#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration (MBA)#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration (MBA)#MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTER OF BUSINESS ADMINISTRATION (MBA)#MSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (MBA)#Post Graduate Diploma#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration (MBA)#Post-graduate degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration (MBA)#Post-Graduate Diploma#Graduate#Bachelor of Commerce#B Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration (MBA)#UMUC#Bachelors of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration (MBA/MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration (MBA#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration (MBA#Bachelor of Science#BSC (Chemistry) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration (MBA#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF BUSINESS ADMINISTRATION / MASTER OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration \\n   B.M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration \\n \\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration \\n(MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration \\n\\nMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration \\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration \\nBachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration \\nDiploma#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration \\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration \\nMaster of Sport 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration \\nMasters of Health Service Administration \\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration & Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration & Master of Project Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration & Master of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration & Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration & Masters of Science#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration &\\nMaster of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration and Juris Doctor#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration and Management (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration and Marketing (dual degree of  M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration and Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration and Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration and Master of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration and Master of Human Resource Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration and Master of Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration and Master of Information Systems and Services#Bachelor of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration and Master of Information Technology dual degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration and Master of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration and Master of Law (MBA/LLM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration and Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration Bachelors of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   75 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MASTER OF BUSINESS ADMINISTRATION DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration degree (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration Degree (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MASTER OF BUSINESS ADMINISTRATION DEGREE (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration Degree (MBA)#HRM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration degree Program (MBA)#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration degree#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration Degree#Bachelor of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration Degree#degree#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration Degree#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration Graduate#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration Management, (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration Management,(MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of business administration MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration MBA#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration MBA#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTER OF BUSINESS ADMINISTRATION WITH A CONCENTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MASTER OF BUSINESS ADMINISTRATION WITH CONCENTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration, (MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration, (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration, E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTER OF BUSINESS ADMINISTRATION, FINANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration, Global (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTER OF BUSINESS ADMINISTRATION, Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MASTER OF BUSINESS ADMINISTRATION, MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MASTER OF BUSINESS ADMINISTRATION, MARKETING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration, MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MASTER OF BUSINESS ADMINISTRATION, SPECIALIZATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of business administration:#Bachelor of commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration. (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration. MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration( MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration(MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration(MBA)#Bachelor of Business Administration(BBA)#Bachelor of Commerce Honors (B. Com) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration)????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration/Juris Doctorate#MBA/JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MASTER OF BUSINESS ADMINISTRATION\\n\tGRADUATED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration\\n    Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration\\n Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration\\n(MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration\\n(MBA)#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration\\n*Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration\\n\\n\\n\\n\\nB.A (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration\\n\\n\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration\\n\\n\\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration\\n\\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration\\nBachelor of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business administration\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration\\nM.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration\\nMaster of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration\\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration\\nMaster of Science#Master of Science Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration\\nMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration\\nPharm.D Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#Academy of Economics#Bachelor's and Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#AL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#B Sc. Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#B.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#BA/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#BA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration#Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#Bachelor \\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration#Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#Bachelor of  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#Bachelor of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#Bachelor of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  110 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration#BAchelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Of Business Administration#Bachelor Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTER OF BUSINESS ADMINISTRATION#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#Bachelor of Arts (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#BAchelor of Arts#Associate of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#Bachelor of Arts#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration#Bachelor of Arts#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#Bachelor of Arts#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#Bachelor of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     MASTER OF BUSINESS ADMINISTRATION#Bachelor of Arts#Matriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#Bachelor of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   66 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#Bachelor Of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF BUSINESS ADMINISTRATION#BACHELOR OF BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#Bachelor of Business Administration#Associate of Arts and Sciences#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#Bachelor of Business Administration#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration#Bachelor of Business Administration#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration#Bachelor of Business Administration#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration#Bachelor of Business Administration#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#Bachelor of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration#Bachelor of Commerce (B. Com) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#Bachelor of Commerce#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#Bachelor of Computers 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTER OF BUSINESS ADMINISTRATION#BACHELOR OF ECONOMICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#Bachelor of Economics#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#Bachelor of Individual Study#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#Bachelor of Industrial Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration#Bachelor of Integrative Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#Bachelor of Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#Bachelor of Law#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#Bachelor of Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#Bachelor of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#Bachelor of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  232 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master Of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF BUSINESS ADMINISTRATION#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration#Bachelor Of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#Bachelor of Science Honors Degree#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration#Bachelor of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration#Bachelor of Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#Bachelor of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#Bachelor of Science#Associate of Arts#Master Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#Bachelor of Science#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration#Bachelor of Science#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration#Bachelor of Science#Associates of\\nArts#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#Bachelor of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#Bachelor of Science#Bachelor of Education#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#Bachelor of Science#Bachelor Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#Bachelor of Science#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration#Bachelor of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#Bachelor of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#Bachelor of\\nCommerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration#Bachelor of\\nCommerce#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#Bachelor of\\nEconomics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#Bachelor of\\nEngineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#Bachelor of\\nScience#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration#Bachelor Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#Bachelor's of Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration#Bachelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#Bachelor\\nof Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#Bachelor\\nof Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration#Bachelors of Business\\n     Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#Bachelors of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTER OF BUSINESS ADMINISTRATION#BACHELORS OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#Bachelors of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration#Bachlor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#BBA) Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#Business Studies#MBA/BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#CFVG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#Chartered Accountant#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#DC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#Diploma#B.Sc (Chemistry) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#Diploma#Master''''s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#ECD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration#Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration#Executive MBA#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration#Global MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration#Graduate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#Graduate#Master of Science#Bachelor of Engineering#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#GW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration#INSEAD#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#Int'l Finance Master of International Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration#J.D./M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration#Juris Doctor#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#Juris Doctorate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#Juris Doctorate#MBA#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#KNUST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration#M.B.A.\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#M.B.A#S.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#Master Graduate#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration#Master of Accounting and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#Master of Aeronautical Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#Master of Art#A & M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#Master of Arts#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#Master of Arts#Bachelor of Arts#AKD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#Master of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#Master of Arts#MBA/MA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#Master of Arts#Ruston 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration#Master of Business Administration#Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#Master of Business and Organizational Security Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration#Master of Business Informatics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#Master of Commerce#Bachelor of\\nCommerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration#Master of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration#Master of Divinity#Graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#Master of Education#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#Master of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#Master of Government 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#Master of Human Resources 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration#Master of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#Master of International Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#Master of International Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#Master of Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration#Master of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration#Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#Master of Library and Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration#Master of Project Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration#Master of Public Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#Master of Public Health#Bachelor of Science#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#Master of Public Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration#Master of Public Policy#Bachelor of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   57 
##                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#Master of Science and Engineering#Bachelor of Science and Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration#Master of Science#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#Master of Science#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#Master of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#Master of Science#Bachelor of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#Master of Science#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#Master of Science#Bachelor of Business Administration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#Master of Science#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTER OF BUSINESS ADMINISTRATION#MASTER OF SCIENCE#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#Master of Science#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#Master of Science#MBA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#Master of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#Master of Technology Management#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration#Master of Tourism Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration#Master of\\nEngineering Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#Master of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#Master of\\nScience#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration#Master#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#Master#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#Master#Bachelor�s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#Masters of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#Masters of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  208 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF BUSINESS ADMINISTRATION#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#MBA (IB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#MBA IS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration#MBA, Generalist 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#MBA) ? ?????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration#MBA#B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#MBA#B.C#M.ct.M H.S school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#MBA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration#MBA#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#MBA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#MBA#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#MBA#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration#MBA#Bachelor of Arts#BA#Associate of Science#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#MBA#Bachelor of Arts#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#MBA#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration#MBA#Bachelor of Business Administration#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration#MBA#Bachelor of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#MBA#Bachelor of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#MBA#Bachelor of Science Degree#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration#MBA#Bachelor of Science Engineering Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration#MBA#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration#MBA#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration#MBA#Bachelor of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Administration#MBA#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#MBA#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#MBA#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration#MBA#Bachelor's degree#Associate of Science#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#MBA#Bachelor's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration#MBA#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#MBA#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Administration#MBA#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MASTER OF BUSINESS ADMINISTRATION#MBA#DIP#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration#MBA#M.S#Master of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#MBA#Master of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration#MBA#Master of International#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#MBA#master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#MBA#Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration#MBA#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration#MBA#Masters of Science (MS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administration#MBA#MBA and BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration#MBA#MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Administration#MBA#MBA#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#MBA#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#MBA#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administration#MBA#MSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MASTER OF BUSINESS ADMINISTRATION#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administration#MD#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#MONTERREY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#NC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Administration#Netherlands#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Administration#Post Graduate Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#Post Graduate Diploma#PGDBA#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#Post Graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business Administration#Postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration#Prospective Graduate#Master of City & Regional Planning#Bachelor of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administration#S.D.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Administration#Summary of Educations\\nMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Administration#UMUC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration#United States BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Administration#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Administration#VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administration#Vienna.\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business AdministrationDecember 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Administrationin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business AdministrationMay 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business AdministrationMay#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business AdministrationMay#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business AdministrationMay#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administrations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Administrations (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Administrations (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business AdministrationUniversity of#Master of Science#Bachelor of Art#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administration� 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Administrative (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Administrator 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Administriation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Adminsitration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Adminstration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Adminstration (M.B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Admistration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Admistration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business Admnistration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Admnistration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Analytics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business and Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business and Administration#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business and Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business and Environmental Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business and Hospitality Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business and Museum Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business and Organizational Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business and Public 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business and Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business and Public Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business and Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Communication Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Continuity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Cyber 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business Ethics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Excellence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Fundamentals 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business Logistics and Engineering     Sep 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business Logistics Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MASTER OF BUSINESS MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Management (MBA)#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Management (MBM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business Management & Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Management Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Management Degree (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business Management\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Management#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Management#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business of Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Business Organization 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business Organizational 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business Southern#Bachelor of Science#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business Statistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business Studies#Bachelor of Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business Taxation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Business Taxation (M.B.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business Taxation and Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business-Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business, Global 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business, International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business, MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business/Engineering Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business\\n          Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business\\n     Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Business\\n  Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   40 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTER OF BUSINESS\\nADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business\\nAdministration (IMBA)#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business\\nAdministration (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTER OF BUSINESS\\nADMINISTRATION (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business\\nAdministration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTER OF BUSINESS\\nADMINISTRATION (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business\\nAdministration (MBA)#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business\\nAdministration (MBA)#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business\\nAdministration (MBA)#Master of Business Management#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business\\nAdministration (MBA#Bachelor of Science#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business\\nAdministration Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business\\nAdministration????????????? ????????????? ????????????? ????????????? ????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business\\nAdministration?????????????????????????????????????????????????????????????? ???????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business\\nAdministration#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business\\nAdministration#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business\\nAdministration#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business\\nAdministration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business\\nAdministration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business\\nAdministration#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Business\\nAdministration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTER OF BUSINESS\\nADMINISTRATION#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business\\nAdministration#Bachelor of Science\\nHonors Degree#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business\\nAdministration#Bachelor of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business\\nAdministration#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business\\nAdministration#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business\\nAdministration#Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business\\nAdministration#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business\\nAdministration#Master of Arts#Associate of Arts French 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business\\nAdministration#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business\\nAdministration#Master of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business\\nAdministration#Master of Public\\nAdministration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business\\nAdministration#Master of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Business\\nAdministration#Master of Science#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Business\\nAdministration#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business\\nAdministration#Master of Science#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business\\nAdministration#MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Business\\nAdministration#MBA#Bachelor of\\nScience#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business\\nAdministration#MBA#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Business\\nAdministration#Post graduate Diploma#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Business\\nAdministration#SEVILLA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Business#Associate of Arts#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Business#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of business#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Business#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Business#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Business#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Business#Master of\\nScience#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Business#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTER OF BUSINESS#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of BusinessAdmin#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of BusinessAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Businesses Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Buss. Economics#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of bUSSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Catechistic Training#MS#BS#Associate of Applied Science degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Ceremonies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Ceremony 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Certificate#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Chemical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Chemical and Biological Physics (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Chemical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Chemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Christian 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Christian Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Christian Business Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Christian Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Church Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Church Music#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of City & Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of City and Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of City and Regional Planning (M.C.R.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of City and Regional Planning (MCRP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of City and Regional Planning#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of City and\\nRegional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of City Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of City Planning (MCP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of City Planning#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Civil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Civil and Construction Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Civil and Environmental Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Civil Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTER OF CIVIL ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Civil Engineering\\nMaster of Business Administration\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Clinical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Clinical Laboratory Sciences and Medical Biotechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Clinical Mental Health Counseling#Master of Clinical Mental Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Clinical Nutrition & Integrative Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Clinical Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Clinical Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   86 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTER OF COMMERCE (M.COM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Commerce (M.Com) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Commerce (M.Comm) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Commerce [M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Commerce and Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Commerce Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Commerce MCom 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Commerce. (Mgmt 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Commerce.\\nDegree#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Commerce#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Commerce#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master Of Commerce#Bachelor Of Commerce#CA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Commerce#Marketing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Commercial Aviation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Communication Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Communication Arts (Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Communication Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Communication Management Attended 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Communication Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Communication#Master of Political#Bachelor of Chinese 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Communications#Masters of Organizational Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Community Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Community Planning#Master of Historic Preservation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Community Planning#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Comparative 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Comparative Jurisprudence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Comparative Jurisprudence (MCJ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Comparative Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Comparative Law (LLM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Compute Applications#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of computer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Computer        Applications (MCA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Computer (M.S.) Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Computer & Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Computer and Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Computer Application 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Of Computer Application 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Computer Application (M.C.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master Of Computer Application (M.C.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Computer Application (MCA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Computer Application(MCA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Computer Application#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Computer Application#M.C.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Computer Application#PTU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Computer applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Computer Applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   87 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Computer Applications ( M.C.A ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Computer Applications (M.C.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Computer Applications (M.C.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Computer Applications (M.C.A)#M.P) \\n\\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Computer Applications (M.C.A#A.S#Bachelor of Computer Applications (B.C.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Computer Applications (M.C.A#B.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Computer Applications (M.C.A#Bachelor of Computer Applications#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Computer Applications (M.C.A#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Computer Applications (M.C.A#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Computer Applications (MCA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   39 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Computer Applications (MCA)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Computer Applications (MCA)#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Computer Applications (MCA)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Computer Applications (MCA)#Bachelor's degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Computer Applications (MCA)#BS (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Computer Applications (Software)#Bachelor of Science#Bachelor's Degree and Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Computer Applications [MCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Computer Applications Chennai 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Computer Applications(MCA)#Master of Science#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Computer Applications\\nDegree#Master s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Computer Applications#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Computer Applications#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Computer Applications#M.C.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Computer Applications#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Computer Applications#MCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Computer ApplicationsMay 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Computer Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Computer Information 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Computer Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Computer Management (MCM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  207 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master Of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Computer Science (M.CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Computer Science (MCS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Computer Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Computer Science (MS)#Master of Mathematics (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Computer Science (pending)#Bachelor of Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Computer Science & MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Computer Science and Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Computer Science Department 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Computer Science#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Computer Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Computer Science#Bachelor of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Computer Science#Bachelor of Electric Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Computer Science#Bachelor of International Trade 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Computer Science#Bachelor of Mechanical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Computer Science#Bachelor of Science#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Computer Science#Master of Business#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Computer Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Computer Science#Mater of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Computer Science#Postgraduate Diploma#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Computer ScienceAugust 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Computer Sciences (MCS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Computer Sciences and Software Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Computer Sciences#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Computer Techniques and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Computer\\nEngineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Computer#Bachelors of Science#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Computing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Computing (M.Comp)#Master of Computer Science (M.C.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Computing Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Construction Engineering Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Construction Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Construction Mgmt 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Contract Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Contracts and Acquisitions 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Corporate Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Cosmetology and Instructor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Counseling Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Counseling Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Criminal Justice (MSCJ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Criminal Justice Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Criminal Justice#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Culinary Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Culinary Arts#Master Chef 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Culinary of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Cultural Heritage 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Curriculum and Instruction 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Cyber Policy and Risk Analysis 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Cyber Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Cybersecurity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Cybersecurity Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Data Analysis 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Data Analytics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Data Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Database Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Database Systems Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Database Systems#Master's Degree\\nM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Decision Analytics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Defence Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Defense Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Dental Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Design#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Development Administration (MDA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Development Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Development Practice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Diplomacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Diplomacy and International Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Diplomacy#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Distance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Distance Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Distance Education (MDE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Distance Education and E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Distance Education and E-learning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Distance Education and eLearning   (MDE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Distance Education and Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Distance#Master s Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  239 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTER OF DIVINITY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Divinity - MDIV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Divinity '11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Divinity (M.Div 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Divinity (MDV) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Divinity & Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Divinity and Christian Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Divinity and Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Divinity Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Divinity Conferred 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Divinity degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Divinity Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Divinity M.DIV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Divinity Religious Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Divinity- M.Div#Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Divinity-Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Divinity, M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Divinity, Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Divinity#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Divinity#B.E. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Divinity#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Divinity#Bachelor of Arts#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Divinity#Bachelor of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Divinity#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Divinity#Bachelor of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                Master of Divinity#Bachelor of Science#Bachelor of Science#Master of Divinity#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Divinity#Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Divinity#Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Divinity#Juris Doctor#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Divinity#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Divinity#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Divinity#Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Divinity#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Early 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Early Childhood 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Early Childhood Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Earth and Planetary Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Econometrics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Economic Policy Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Economic Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Economic Science#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Economic Sciences#Finland. B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   33 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Economics and Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Economics, Intl. Econ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Economics#B.COM#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Economics#Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Economics#Bachelor of\\nEconomics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Economy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Ed. Admin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  668 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master Of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTER OF EDUCATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Education\t\t\t\t\t\t\tPresent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Education\t(M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Education          Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Education  - Administration\\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Education (Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Education (Ed.M) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Education (Ed.M)#BA#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Education (Ed.M)#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Education (M. Ed) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Education (M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Education (M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Education (M.Ed) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Education (M.ED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Education (M.Ed#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Education (M.Ed#Masters#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Education (MEd) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Education (MEd)#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Education (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Education & Master of African American Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Education & Teacher' Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Education Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Education Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Education and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Education and Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Education Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Education Curriculum and Instruction 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Education degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Education degree (M.Ed) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Education Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Education Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Education Edinboro 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Education Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Education Educational Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Education Educational Administration#Bachelor of Education#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Education Enrollee 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Education George 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Education graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Education Interdisciplinary Studies#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Education Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Education Leadership. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of education M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Education M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Education Present 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Education Sport and Exercise Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Education Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Education TESOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Education-M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Education, (M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Education, Administration and Supervision 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Education, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Education, Education Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Education, Education Leadership\t\t\t\t\tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Education, M. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Education, M. Ed. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Education, M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Education, NK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Education: M.Ed candidate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Education#B. S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Education#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Education#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Education#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Education#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Education#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Education#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Education#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Education#Bachelor of Science#Associate of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Education#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Education#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Education#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MASTER OF EDUCATION#CURRICULUM & INSTRUCTION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Education#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Education#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Education#M. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Education#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Education#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Education#Master of Business Administration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Education#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Education#Masters Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Education#Masters Degree#Bachelors Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Education#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Education#PDS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Education#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Educational Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Educational Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Educational#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of EducationMaster of EducationMaster of EducationMaster of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Electric Engineering#Bachelor of Electric Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Electrical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Electrical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Electrical Engineering#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Electrical#Bachelor of Electronics EngineeringBeijing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Electrical#CUA Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Electronic Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Electronical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MASTER OF ELEMENTARY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Elementary Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Elementary Education#Bachelor of Arts#Master of Special Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of ELEMENTAry Education#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Emergency 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Emergency Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Emergency Management (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Energy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Energy and Earth Resources 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Energy Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Engg 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Engineer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  578 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master Of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF ENGINEERING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Engineering   Beijing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Engineering  Structural Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Engineering (h. c 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Engineering (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Engineering (M. Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Engineering (M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Engineering (M.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Engineering (M.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Engineering (M.Eng#Bachelor of Applied Science (B.A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Engineering (M.Eng#Bachelor of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Engineering (M.Eng#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Engineering (M.Eng#Bachelor of Science#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Engineering (M.Eng#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Engineering (M.Eng#Barchelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Engineering (M.Eng#Master's degree#Master's degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Engineering (ME) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Engineering (MEng) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Engineering (MEng)#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTER OF ENGINEERING (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Engineering & Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Engineering & Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Engineering & Management (MEM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Engineering Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Engineering Administration (MEA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Engineering Administration (MEA)#Bachelor of Architectural Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                         Master of Engineering Administration\\nDegree#Master's Degree#Bachelor of Arts (BA)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Engineering Administration#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Engineering and Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Engineering Degree (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Engineering Degree Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Engineering degree#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Engineering Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Engineering Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   48 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Engineering Management (M.E.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Engineering Management (MEM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Engineering Management (MEM)#Master of Management and Manufacturing (MMM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Engineering Management degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Engineering Management#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Engineering Management#Bachelor of Industrial Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Engineering Mechanical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Engineering Operations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Engineering Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MASTER OF ENGINEERING SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Engineering Science (M.Eng.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Engineering, A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Engineering) Maryland 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Engineering\\nManagement degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Engineering\\nScience#Bachelor of Science#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Engineering#Advance Diploma#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Engineering#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Engineering#B.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Engineering#B.Eng#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Engineering#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Engineering#B.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Engineering#Bachelo's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Engineering#Bachelor  of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Engineering#Bachelor of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Engineering#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Engineering#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Engineering#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Engineering#Bachelor Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Engineering#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Engineering#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Engineering#Graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Engineering#M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Engineering#Master of Business\\nAdministration#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Engineering#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Engineering#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Engineering#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Engineering#ME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Engineering#MS#BS#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Engineering#Prof. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Engineering� A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of English 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of English Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of English Literature 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of English#Bachelor of Education#Bachelor of Arts#High School\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Engneering#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Enterprise 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Enterprise Risk Management (ERM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Entertainment 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Entertainment Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Entertainment Technology (M.E.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Entrepreneurship 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Environment Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Environmental 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Environmental Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Environmental Engineering\\n          Bachelor of Environmental Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Environmental Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Environmental Management (M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Environmental Management (MEM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Environmental Management and Quantitative Analysis 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Environmental Management\\nMaster of Forestry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Environmental Management#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Environmental Management#Master of Forestry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Environmental Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Environmental Pollution Control 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Environmental Resource Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Environmental Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Environmental Science / Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Environmental Science & Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Environmental Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Environmental Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Environmental/Environmental 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Environmental#Bachelor of Architecture (B.Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of European Studies#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Events & Facilities Management#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Exercise and Sport Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Exercise Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTER OF EXERCISE SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Film 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  162 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Finance          TBD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Finance (M.Fin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Finance (M.Fin) GMAT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Finance (MFIN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Finance (MSF) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Finance & Master of Business\\nAdministration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Finance degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Finance Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Finance#A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Finance#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Finance#Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Finance#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Financial 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Financial Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Financial Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Financial Management#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Financial Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Fine Art (M.F.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Fine Art Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Fine Art's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  235 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTER OF FINE ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Fine Arts (M.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Fine Arts (M.F.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Fine Arts (M.F.A#Bachelor of Fine Art (B.F.A)#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Fine Arts (M.F.A#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Fine Arts (MFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Fine Arts (MFA)#undergraduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Fine Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Fine Arts#B.A#Master of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Fine Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Fine Arts#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Fine Arts#Bachelor of Architecture (B.Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Fine Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Fine Arts#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Fine Arts#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Fine Arts#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Fine Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Fine Arts#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Fine Arts#Master of Fine Arts#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Fisheries Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Food Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Forensic Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Forensic Computing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Forensic Medicine Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           master of forensic science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Forensic Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Forensic Science (M.F.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Forensic Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Forensic Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Forensic Sciences (M.F.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Forensic Sciences#Bachelor of Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Forest Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Forest Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Forestry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Forestry (MF) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of French 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of French pedagogy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of French Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of General Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of General Administration (MGA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of General Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of General Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of General Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of General Administration#UMUC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of General Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of General Psychology-MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                              Master of General\\nAdministration Degree#Bachelor of Science#Administration Degree#DETAILS OF SELECTED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of General\\nAdministration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Geophysics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Geospatial Info#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Geospatial Information Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Geriatric Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of German 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of GIS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Global 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Global Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Global Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Global Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Global Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Global Policy Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Global Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Global#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Governance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Government 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Government & Politics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Government Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Government Administration (M.G.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Government Administration (MGA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Government and Politics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Government degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Graphic Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Graphic Design#Bachelor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MASTER OF HEALTH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   89 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Health Administration  \t\t\t\t\t\t\t\tGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Health Administration (MHA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Health Administration (MHA)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Health Administration and MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Health Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Health Administration Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Health Administration#Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Health Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Health Administration#Bachelor of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Health Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Health Administration#Doctor of Medicine (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Health Adminstration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Health Care Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Health Care Administration (MHA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Health Care Administration / Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Health Care Administration#Bachelor\\nof Science#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Health Informatics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Health Professions Education (MHPE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   37 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Health Science (M.H.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Health Science (MHS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Health Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Health Science#Master of Public Health Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Health Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Health Sciences (MHS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Health Sciences Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Health Sciences#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Health Sciences#M.H.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Health Sciences#M.H.Sc#Doctoral of Medicine Degree#M.D#Bachelor Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Health service Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Health Service Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Health Service Administration (MHSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Health Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Health Services Admin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Health services administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Health Services Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   51 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Health Services Administration (MHA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Health Services Administration (MHSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Health Services Administration (MHSA)#Bachelor of Laws (LLB)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Health Services Administration (MHSA)#BS) Bachelor of Education (Foundation) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Health Services Administration \\n\\nMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Health Services Administration\\nDegree#Master s Degree#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Health Services Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Health Services Administration#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Health Services Administration#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Health Services Administration#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Health Services and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Health Services and Administration (MHSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Health Services Leadership and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Health Systems Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Health Systems Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Health#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Healthcare 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTER OF HEALTHCARE ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Healthcare Administration & Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Healthcare Administration and Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Healthcare Administration IT#Bachelor's Degree#Bachelor of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Healthcare Administration\\nBachelor of Sociology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Healthcare Informatics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Histology and Genetics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of History 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Holistic Nutrition 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Homeland Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Hospital 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Hospital Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Hospitality 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Hospitality Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Hospitality Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Hospitality Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Hospitality Management          New Jersey 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Hotel 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Human 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Human Centered Computing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Human Organization Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Human Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Human Resource (Management) \\n\\n\\nMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Human Resource Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Human Resource Manage          Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Human Resource Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Human Resource Management (MHRM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Human Resource Management Honor Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Human Resource Management#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Human Resource Management#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Human Resource Managements 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Human Resources 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Human Resources (MHR) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Human Resources Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Human Resources Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Human Resources Management (MHRM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Human Resources Management and International relations\\nESA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Human Resources Management#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Human Service Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Human Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Human Services (MHS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Human Services Administration coursework 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Human Services Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Human Services Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Human Services Degree (MHS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Human Services Program. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Human Services Program. Graduate#Doctoral Degree#Doctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Humanities 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Humanities degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Humanities\\n\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Humanities\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Humanities#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of immunology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Immunology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Industrial 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Industrial and Mgmt Engg 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Industrial Assembly 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Industrial Construction 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Industrial Distribution (MID) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Industrial Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Industrial Labor Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Industrial Organization 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Information 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Information and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Information and Assurance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Information and Data Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Information and Data Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Information and Library Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Information and Library Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Information Assurance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Information Assurance degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Information Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   70 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Information Management (MIM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Information Management (MIM) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Information Management (MIM)\\n\\n\\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Information Management Systems (MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Information Management#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Information Management#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Information Management#Bachelor of Engineering (BEng) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Information Management#MIM#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Information of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Information Science (M.Inf.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Information Science (MIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Information Science (MIS)#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Information Science and (E.M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Information Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Information Science#MLIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Information Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Information Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Information Security & Assurance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Information Security#Master of Applied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Information Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Information System 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Information System (MIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Information System Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Information System Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Information System#Bachelor of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   76 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Information Systems (MIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Information Systems Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Information Systems Management (MISM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Information Systems Management (MISM)#Master of Arts (MA)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Information Systems Management#B.Sc. of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Information Systems Management#MS \\nISM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Information Systems Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Information Systems(MIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Information Systems#Bachelor of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Information Systems#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Information Systems#Master of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Information Systems#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Information Systems<BR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Information SystemsExpected 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Information Technologies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   93 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Information Technology (MIT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of information technology (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Information Technology (MSIT)#Master of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Information Technology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Information Technology(MIT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Information Technology#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Information Technology#Bachelor of Business Administration (BBA)#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Information Technology#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Information\\nTechnology#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Infrastructure Planning and Management (MIPM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Intellectual Property 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Intellectual Property Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Intelligence and Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Intelligence Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Intelligence Studies#Bachelor of Arts#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Intercultural#Diploma#Winning Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Interdisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Interdisciplinary Studies#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of interior architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of International \\nManagement 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of International A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of International Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  102 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MASTER OF INTERNATIONAL AFFAIRS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of International Affairs (M.I.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of International Affairs (M.I.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of International Affairs (MIA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of International Affairs (MIA) and Master of Public Health (MPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of International Affairs (MIA)#Masters of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of International Affairs & Administration (MIAA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of International Affairs and Administration (M. I. A. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of International Affairs and Administration (MIAA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of International Affairs#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of International Affairs#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of International Affairs#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of International Affairs#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of International and Intercultural Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of International and#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of International Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of International Business (MFIN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of International Business (MIB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of International Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of International Business Administration (IMBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of International Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of International Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MASTER OF INTERNATIONAL BUSINESS STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of International Business Studies (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of International Business, MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of International Business\\nMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of International Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of International Conflict and Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of International Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of International Development (MID) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of International Development Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of International Economic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of International Economic Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of International Economic Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of International Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of International Economics and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of International Enterprise Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of International Finance degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of International Finance Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of International healthcare management#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of International Hospitality and Tourism Management (MIHTM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of International Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of International Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of International Law and Diplomacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of International Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   66 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTER OF INTERNATIONAL MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of International Management (International MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of International Management (M.I.M#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of International Management (MIM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of International Management (MIM), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of International Management\\nESAN#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of International Management#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of International Management#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of International Management#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of International Management#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Master of International Management#Master of Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of International Management#Master of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Master of International Management#Master\\nof Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of International Management#MIM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of International Management#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of International Marketing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of International Marketing (MIM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of International Marketing Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of International MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of International Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of International Policy & Practice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of International Policy & Practice (MIPP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of International Policy and Practice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of International Policy and Practice (M.I.P.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of International Policy and Practice (MIPP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of International Policy and Practice (MIPP)#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of International Policy#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of International Public 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of International Public Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of International Public Affairs (MIPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of International Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of International Public Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of International Public Policy (MIPP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of International Relation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of International Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF INTERNATIONAL RELATIONS (MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of International Relations (MIR) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of International Relations#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of International Revenue Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of International Security Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of International Service 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of International Service (MIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of International Service I 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of International Service#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of International Service#Master's#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of International Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of International Studies (MIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of International Studies#Master of Social Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of International Trade and Investment Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                    Master of International\\nManagement (International MBA)#General Business degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of International\\nManagement#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of International\\nRelations\\nB.BUS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of International#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of IT (M.S. IT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Jewish Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Jewish History 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Journalism (MJ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Journalism degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Judicial Studies Degree#Master of Judicial Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Jurisprudence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Jurisprudence (MJ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Jurisprudence Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Labor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Labor & Industrial 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Labor and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Labor and Employment Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Labor Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Labor#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Laboratory Animal Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Landscape Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Landscape Architecture (MLA)#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Landscape Architecture and Regional 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Landscape Architecture Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Landscape Architecture#Bachelor of Arts#Master of Urban and Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Landscape Architecture#V.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Latvian 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Latvian Language 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Latvian Language and Literature 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Law (LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Law (LL.m) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Law (LL.M) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Law (LLM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Law (LLM) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Law and Business (MLB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Law and Diplomacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Law Certification (LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Law degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Law Degree#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Law#B.L 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Law#Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Law#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Law#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  301 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Laws - LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Laws - LLM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Laws -LLM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Laws (General LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Laws (L.L.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Laws (L.L.M) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Laws (L.L.M#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Laws (LL. M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Laws (LL. M) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Laws (LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  106 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Laws (LL.M.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Laws (LL.M) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Laws (LL.M)#Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Laws (LL.M)#Thesis 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Laws (LL.M#Bachelor of Laws (LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Laws (LL.M#Bachelor of Laws (LL.B#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Laws (LL.M#Bachelor of Laws (LLB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Laws (LL.M#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Laws (LL.M#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Laws (LL.M#J.D#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Laws (LL.M#Juris Doctor#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Laws (LL.M#Juris Doctor#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTER OF LAWS (LL.M#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Laws (LL.M#Master of International Service (MIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Laws (LL.M#Master of Laws (LL.M#Bachelor of Laws (LLB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of laws (LLM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Laws (LLM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MASTER OF LAWS (LLM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Laws (LLM)#Bachelor of Laws (LL.B#Bachelor of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Laws (LLM)#Bachelor of Laws (LLB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Laws (LLM)#Bachelor of Laws#Juris Doctor {JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Laws (LLM)#Doctor#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Laws (LLM)#inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Laws (LLM)#Juris Doctorate (JD)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Laws (LLM)#THE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Laws & Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Laws Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Laws degree (LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Laws Degree#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Laws Joint Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Laws Taxation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Laws, (LLM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Laws, (LLM) U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Laws, LL.M. Specialization#Master of Laws, LL.M#Juris Doctor#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Laws, LLM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Laws, LLM, LLB, (JD)#Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Laws, Tax (LLM)#Bachelor of Laws, LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Laws/LLM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Laws#Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Laws#Bachelor of Laws (LL.B#Bachelor of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Laws#Bachelor of Laws Degree#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Laws#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Laws#J.D.\\nJuris Doctor#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Laws#Juris Doctor and Bachelor of Civil Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Laws#Juris Doctor#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Laws#Legal Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Laws#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Laws#LL.M#B.L#Bachelor of Laws#LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Laws#LL.M#Bachelor of Laws (LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Laws#LL.M#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of laws#LLM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Laws#Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Legal Institution (M.L.I) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Legal Letters, LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Legal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Legal Studies (M.L.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Letters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Letters (MLitt) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Letters#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Liberal Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   33 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Liberal Arts (ALM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Liberal Arts (MLA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Liberal Arts & Post-Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Liberal Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Liberal Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Liberal Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Liberal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Liberal Studies and Communications Degree (MLS) and Bachelor of Science Degree (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Liberal Studies and\\nCommunications Degree (MLS) and Bachelor of Science Degree (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Liberal Studies#M.A.L.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Library 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Library & Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Library and Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Library and Computer Science#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Library and Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Library and Information Science (MLIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Library and Information Science (MLS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Library and Information Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Library and Information Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Library Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   59 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTER OF LIBRARY SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Library Science (MLS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Library Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Library Science MLIS#Bachelor of Library Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Library Science#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Library Science#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Library Science#Master of Library Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Library Service (MLS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Library Service (MLS)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Library#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Library#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Linguistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Literature (M. Litt) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Liturgical Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Logistics and Supply Chain Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Logistics Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Macro Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Maintainability Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   74 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Management (Business) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF MANAGEMENT (MBA EQUIVALENT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Management (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Management (MBA)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Management (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Management & Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Management Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Management and Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Management and#Master of Education#Bachelor of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Management degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Management Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Management degree#Master of Management (MM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Management Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Management Engineering#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Management Engineering#Bachelor and Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Management Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Management Information System 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Management Information System (MMIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Management Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Management Information Systems#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Management of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Management of Labor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Management of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Management Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Management Science (MMS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Management Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Management Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master Of Management Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Management Studies (MBA)#Bachelor of Mechanical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Management Studies (MMS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Management Studies#Bachelor of Architecture (B.Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Management Studies#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Management-Nonprofit 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Management????? ???????????????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Management), Advanced Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Management#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Management#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Management#Bachelor of Science (BS)#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Management#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Management#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Management#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Management#Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Management#U.S#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Manufacturing Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Mariculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Marine Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Maritime and Naval Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Maritime Engineering Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Marketing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Marketing Analytics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Marketing Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Marketing Management#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Marketing#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Marketing#Master of Arts (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Mass 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Mass Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Mass Communication#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Mass Communication#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Mass Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Material Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Materials Science and Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Maternity and Reproductive Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Math Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Mathematical Engineering#Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Mathematics (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Mathematics and Statistic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Mathematics and Statistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Mathematics and Statistics#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Maya SIGraph 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Mechanical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Mechanical and Aerospace Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Mechanical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Mechanical Engineering#M.M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Media and Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Medical and Health Professions Education (MHPE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Medical Cybernetics Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Medical Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Medical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Medical Science#P.A., MMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Medical Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master Of Medicine#Bachelor of Medicine, Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Mental 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Mental Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Mental Health Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Metaphysical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Mgmt 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Mgmt (MBA) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Microbiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Middle East Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Mil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Military 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Military Art and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Military Art and Science (MMAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Military Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Military Arts and Science (MMAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Military Arts and Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Military Arts and Science#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Military Arts and Science#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Military Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Military Operational 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Military Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Military Strategy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Military Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Military Studies degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Military Studies#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Multimedia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Museum Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  100 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Music (M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Music (MM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Music (MM)#Bachelor of Music (BM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Music and Bachelor of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Music degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Music Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTER OF MUSIC DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Music Degree#Bachelors of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Music Degree#M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Music Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Music Performance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Music\\nBachelor of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Music#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Music#Bachelor of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Music#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Music#M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of National 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of National Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Natural 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Natural Resources 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Natural Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Nature and Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Network and Communications Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Nonprofit Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Nonprofit Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Nonprofit Management and Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Nonprofit Organizations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Nonprofit Organizations (MNO) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Nuclear Engineering#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Nursing (MN) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Nursing Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Occupational Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Occupational Therapy (MOT)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Occupational Therapy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Operational Arts & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Operations Research 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Organization Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Organizational 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Organizational  Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Organizational Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Organizational Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Organizational Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Organizational Management#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Organizational Performance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Organizational Science (M.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Oriental Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Pacific 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Pacific International Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Pacific International Affairs (MPIA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Pastoral Ministry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Peace & Conflict Resolution 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Personnel Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Personnel Management#Diploma#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Pharmacology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Pharmacology and toxicology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Pharmacy (M-Pharm) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Pharmacy (M. Pharm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   62 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Philosophy \t\t\t\t\t    Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Philosophy (M. Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Philosophy (M.Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Philosophy (M.Phil) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Philosophy (M.Phil#Master of Science (M.Sc#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Philosophy (Mathematics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Philosophy (MPhil) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Philosophy (Mphil) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Philosophy [M.Phil#Doctorate#M. Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Philosophy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Philosophy of Botany 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Philosophy#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Philosophy#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Philosophy#M.Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Philosophy#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Physical Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Physical Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Physical Therapy degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Physical Therapy#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Physician 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Physician Assistant 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Physician Assistant (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Physician Assistant Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Physician Assistant Studies (MPAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Physics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Physics Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Physics#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Physiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Physiotherapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Piano Performance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Planning (M.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Planning Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Police#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Policy Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Policy Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Policy Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Policy Sciences#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Political Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Political Management#Master of Business Administration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTER OF POLITICAL SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Political sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Preservation Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Private Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Probability and Statistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Procurement and Acquisition Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Prof. Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Professional 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Professional Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Professional Accountancy (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Professional Accountancy /Master of Taxation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Professional Accountancy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Professional Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MASTER OF PROFESSIONAL ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Professional Accounting \t\t\tBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Professional Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Professional Communication#Bachelor of Business Information System\\n(BBIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Professional Counseling Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Professional Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Professional Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Professional Sciences#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Professional Students 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Professional studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  401 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Professional Studies (Ag 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Professional Studies (M.P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Professional Studies (M.P.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Professional Studies (MPS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Professional Studies (MPS) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Professional Studies (MPS)#Master of Public Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Professional Studies Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Professional Studies Bachelor of Liberal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Professional Studies degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Professional Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF PROFESSIONAL STUDIES DEGREE#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Professional Studies of Geospatial Information Sciences#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Professional Studies, MPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Professional Studies#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Professional Studies#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Professional Studies#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Professional Studies#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Professional Studies#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Professional Studies#DC - expect degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Professional Studies#Executive MBA#Master of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Professional Studies#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Professional Studies#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Professional Studies#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Professional Studies#Master of Science (M.Sc#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Professional Studies#MPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Professional Writing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of ProfessionalStudies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Project Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   33 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Project Management ; Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Project Management (MPM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Project Management (MPM)#Graduate Diploma#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of project management (MPM)#Master of Business Administration (MBA)#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Project Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Project Management\\nDegree#Master's degree#Degree#B.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Project Management#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Project Management#MPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Psychology#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Pubic Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Pubic Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Publi c Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of public 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Public 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Public  Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Public (Business) Administration (M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Public (MPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Public \\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Public & International Affairs (MPIA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Public Admin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Public Adminisration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1090 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Public Administration\t (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Public Administration  \\n \\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Public Administration (M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTER OF PUBLIC ADMINISTRATION (M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Public Administration (M.P.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Public Administration (M.P.A#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Public Administration (M.P.A#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Public Administration (M.P.A#Bachelor of Arts (B.A#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Administration (M.P.A#Bachelor of Arts#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Public Administration (MPA ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Public Administration (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  106 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF PUBLIC ADMINISTRATION (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Public Administration (MPA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Public Administration (MPA) Degree#Bachelor of Arts (BA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Public Administration (MPA)#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Administration (MPA)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Public Administration (MPA)#Bachelor of Public Administration#Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Public Administration (MPA)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Public Administration (MPA)#BS#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Public Administration (MPA)#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public Administration (MPA)#Juris Doctor#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Public Administration (MPA)#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Administration (MPA)#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Public Administration (MPH)#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTER OF PUBLIC ADMINISTRATION / M.P.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Public Administration \\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public Administration & Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Public Administration and Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Public Administration and Graduate#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Public Administration and International Affairs#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Public Administration and Master of International Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Public Administration and Policy (MPAP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Public Administration Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Public Administration conc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Public Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Public Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Public Administration Degree (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Administration Degree#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Public Administration degree#Master of Public Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Public Administration Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public Administration MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Public Administration MPA (dual degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Public Administration,  M. P. A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Public Administration(MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Public Administration\\n\\n\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Public Administration\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Public Administration\\nMaster of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Public Administration#B.MdS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public Administration#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public Administration#B/A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Public Administration#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Public Administration#Bachelor Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Public Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Public Administration#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Public Administration#Bachelor of Arts#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Public Administration#Bachelor of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public Administration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public Administration#Bachelor of Business Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTER OF PUBLIC ADMINISTRATION#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Public Administration#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Public Administration#Bachelor of Science#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Public Administration#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Public Administration#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Public Administration#Bachelors of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Public Administration#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Public Administration#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public Administration#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Public Administration#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Public Administration#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public Administration#Master of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public Administration#Master of International Affairs#Bachelor of International Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Public Administration#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Public Administration#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Public Administration#Master of Survey Research#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public Administration#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Administration#MPA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Public Administration#MPA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Administration#MPA#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Public Administration#MPA#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Administration#MPA#Bachelor\\nof Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Public Adminstration#Executive Master of Business Administration#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Public Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   62 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Public Affairs (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Public Affairs (MPA) & Master of Arts#IU#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Public Affairs and Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Public Affairs/Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Public Affairs#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Public Affairs#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Public Affairs#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Public Affairs#M.P.A#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Affairs#Master of Arts#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Public Affairs#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Public and Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Public and International Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Public and Private Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Public Anthropology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Public Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Public Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Public Communication and Public Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  882 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master Of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTER OF PUBLIC HEALTH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Public Health          December 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Public Health    Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Public Health (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Public Health (M.P.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Public Health (M.P.H#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Public Health (MPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Public Health (MPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  158 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Public Health (MPH) and Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Public Health (MPH) and Master of Public Policy (MPP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Public Health (MPH) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Public Health (MPH) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Public Health (MPH)#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Public Health (MPH)#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Public Health (MPH)#Bachelor & Bachelor of Surgery (MB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public Health (MPH)#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Public Health (MPH)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Public Health (MPH)#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Public Health (MPH)#Master of Social Work (MSW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Health & Tropical Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Public Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Public Health Administration#Bachelor of Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Public Health and Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Public Health degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Public Health Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Public Health degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Public Health degree#Master's (MPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Public Health Epidemiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Public Health Joint 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Public Health M.P.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Public Health Nutrition 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Public Health, MPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Public health: Ongoing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Public Health\\n\\n   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Public Health\\n\\n Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Public Health#Associate Degree#Diploma#NIGERIA Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Health#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Public Health#B.E.S.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Health#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Public Health#Bachelor of Applied Science#Bachelor of General Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Public Health#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Health#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Public Health#Bachelor of Medicine and Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Health#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Public Health#Bachelor of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Public Health#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Health#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Public Health#Degree#Master of Science#MS#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Public Health#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public Health#Doctor of Medicine (MD)#Bachelor of Applied Science (B.A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Public Health#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Public Health#H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Public Health#M.B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Public Health#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Public Health#Master of Science (M.S#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Public Health#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Public Health#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Public Health#Medical Doctor (MD)#Bachelor\\nof Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Health#MPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Public Health#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Health#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Public Health#Residency 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Public HealthDecember 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Public Heath 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Public Law#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Public Management (MPM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Public Management and Leadership (MPM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Public Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  331 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTER OF PUBLIC POLICY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Public Policy (M.P.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Public Policy (MPP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public Policy (MPP)#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Public Policy (MPP)#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Public Policy (MPP)#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Public Policy (MPP)#M.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Public Policy & Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Public Policy & Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Public Policy Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Public Policy Analysis 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Public Policy and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Public Policy and Administration (MPPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Public Policy and Management (MPPM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Public Policy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Public Policy Degree:  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Public Policy Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Public Policy Student 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Policy#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Public Policy#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Public Policy#Bachelor of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Public Policy#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Public Policy#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Policy#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Public Policy#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Public Policy#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Public Policy#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Policy#Master of Arts#Bachelor of Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Public Policy#Master of Psychology#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Public Policy#Master of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Public Policy#Master of\\nPsychology#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Public Policy#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Public PolicyApril 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Public Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Public Service (M.P.S.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Public Service and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Public Service and Administration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Public\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Public\\nAdministration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Public\\nAdministration#Master of Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Public#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Public#Master of Arts#A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of PublicHealth 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Quality Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Quality System Management (MSQSM)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Quantitative 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Quantitative Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Quantitative Management Science#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Quantitative Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Radiophysics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Real 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Real Estate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Real Estate and Infrastructure 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Real Estate Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Real Estate Development#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Regional Development Studies#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Regional Planning (MRP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Regional Planning#Master of Science#Academy of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Regulatory Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Rehabilitation Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Reliability Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Religious Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Religious degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Religious Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Religious Education diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Religious Education#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Religious Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of research 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Research 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of research#Bachelor of Biology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Restorative Practices 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Retailing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Sacred Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Sales 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of School Administration & Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Scienc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Scienc#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    master of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   58 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                23024 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of SCience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MASTER of SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MASTER OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  593 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science\t\tAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science          Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science          In progress 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science        Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science        Speech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science       Awarded the degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science     \\nMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science    Sep 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MASTER OF SCIENCE  (CANDIDATE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science  (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science  Degree#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science  IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science  Microbiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science - Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science ? Master of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science .................... 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science ( M.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science ( MS degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science (Chemistry of Natural Compounds) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science (CS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (Engineering) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (GA)#Bachelor of Science (LA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (In Progress) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (INFS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (M .Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science (M. Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science (M. Sc#Bachelor of Science (B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science (M.Phil) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  187 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTER OF SCIENCE (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (M.S ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (M.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MASTER OF SCIENCE (M.S. DEGREE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science (M.S.) A.B.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (M.S.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (M.S.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science (M.S.)/Master of Business Administration (M.B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (M.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (M.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (M.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   50 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science (M.S) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science (M.S)#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science (M.S)#Bachelor of Engineering (B.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science (M.S)#Bachelor of Engineering (B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science (M.S)#D.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science (M.S)#Master of Education (M.Ed) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science (M.S#Associate of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science (M.S#Associate of Science (A.S#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science (M.S#Associate#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science (M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science (M.S#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (M.S#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (M.S#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science (M.S#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science (M.S#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (M.S#Bachelor of Engineeering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science (M.S#Bachelor of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science (M.S#Bachelor of Engineering (B.E#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (M.S#Bachelor of Engineering (B.E#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science (M.S#Bachelor of Engineering (BE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (M.S#Bachelor of Engineering (BE)#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science (M.S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (M.S#Bachelor of Science (B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science (M.S#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (M.S#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science (M.S#Bachelor of Science (BS)#Associate of Arts (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science (M.S#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science (M.S#Bachelor of Science#B.S#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science (M.S#Bachelor of Science#B.S#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (M.S#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science (M.S#Bachelor of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (M.S#Bachelor of Technology (B.Tech#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (M.S#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (M.S#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (M.S#Bachelor's Degree#Associate of Arts (A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science (M.S#Bachelor's degree#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science (M.S#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science (M.S#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science (M.S#BTECH#ICSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science (M.S#CA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science (M.S#Dual Bachelors of Arts (B.A.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science (M.S#M. Sc (Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science (M.S#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (M.S#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science (M.S#Master of Arts (M.A#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (M.S#Master of Business Administration (M.B.A#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science (M.S#Master of Business Administration (MBA)#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (M.S#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (M.S#Master of Science (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science (M.S#Master of Science (M.S#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science (M.S#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science (M.S#Master of Science#M.S.E#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (M.S#Master's degree#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (M.S#Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science (M.S#Master's degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science (M.S#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTER OF SCIENCE (M.SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (M.Sc. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science (M.Sc.(P) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (M.Sc.)\tSt 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science (M.Sc.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (M.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (M.Sc) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science (M.Sc)#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science (M.Sc)#Bachelor of Science (B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science (M.Sc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (M.Sc#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science (M.Sc#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science (M.Sc#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science (M.Sc#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (M.Sc#Bachelor of Science (B.Sc#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science (M.Sc#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science (M.Sc#Master of Business Administration (M.B.A#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (M.Sc#Master of Philosophy#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science (M.Sc#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science (M.Sc#SHRM#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (Mathematics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (MHA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science (Microbiology) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (MIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (MS degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  427 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTER OF SCIENCE (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science (MS) / Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science (MS) Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTER OF SCIENCE (MS) COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (MS) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (MS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (MS) degree#Bachelor of Science (BS) degree#Bachelor of Science (BS) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science (MS) Degree#Graduate#Bachelor of Science (BS)#Honorary Doctorate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science (MS)/Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science (MS)#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (MS)#Associates (AAS)#Bachelors (BA)#Associates (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (MS)#Associates (AAS)#Bachelors (BA)#Associates (AAS)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science (MS)#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science (MS)#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (MS)#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science (MS)#Bachelor of Applied Science (B.A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science (MS)#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (MS)#Bachelor of Arts (B.A#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science (MS)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science (MS)#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science (MS)#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science (MS)#Bachelor of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science (MS)#Bachelor of Engineering (BE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science (MS)#Bachelor of Engineering (BE)#Internet of Things ( IoT)\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science (MS)#Bachelor of Engineering (BEng) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science (MS)#Bachelor of Engineering (BEng)#Bachelor of Engineering (B.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science (MS)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (MS)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science (MS)#Bachelor of Science (BS)#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science (MS)#Bachelor of Science (BS)#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science (MS)#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science (MS)#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (MS)#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science (MS)#Bachelor of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTER OF SCIENCE (MS)#BACHELOR OF TECHNOLOGY (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (MS)#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (MS)#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science (MS)#Bachelor's of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science (MS)#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science (MS)#BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science (MS)#CCIM#BS#Associate s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science (MS)#CIO#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science (MS)#Doctor of Philosophy (Ph.D#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science (MS)#Master of Arts (MA)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (MS)#Master of Business Administration (M.B.A#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science (MS)#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science (MS)#Master of Business Administration (MBA#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science (MS)#Master of Business Administration#MBA#Master of Arts (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (MS)#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (MS)#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science (MS)#Master of Science (MS)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (MS)#Master of Science#Master of Architecture#Bachelor of Science#BSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science (MS)#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science (MS)#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science (MS)#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             MASTER OF SCIENCE (MS)#MS#BACHELOR OF SCIENCE (BS)#BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (MS)#Post Graduation Diploma#Bachelor of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science (MS)#Post-Graduate Diploma#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (MSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (MSB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science (MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science (MSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (MSc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (MSC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science (MSc) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (MSc), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (MSc): 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science (MSc)#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (MSc)#B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science (MSc)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science (MSc)#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science (MSc)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science (MSc)#Bachelor of Science (B.Sc#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science (MSc)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science (MSc)#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science (MSc)#Bachelor of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (MSc)#Bachelor of Science#High School Deploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science (MSc)#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science (MSc)#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science (MSc)#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science (MSc)#Bachelor's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (MSc)#Bachelor#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (MSc)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science (MSc)#Master of Laws (LLM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science (MSc)#Master of Science (MSc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science (MSc)#Master of Science (MSc)#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (MSC)#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science (MSc)#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science (MSc)#Post Graduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTER OF SCIENCE (MSE)#BACHELOR OF SCIENCE (BSEE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MASTER OF SCIENCE (MSED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (MSEE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (MSIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (MSM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MASTER OF SCIENCE (MSME) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (MSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (MSUS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science (Nursing) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science (Post Comprehensive 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science (ScM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science (SM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (Software engineering) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science (Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science (Thesis)#B.Tech & M.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science (Zoology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science [M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science [MS#MBA#Master of Music#MBA#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science / Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science \\n(MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science \\nMaster 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science \\nMaster Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science \\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science & Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science & Doctor of Medicine dual degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science & Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science & Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science &ndash 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science &Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science Accounting (MSAC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science Administration (MSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science Advanced Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science and Administration (MSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science and Administration (MSA)#Bachelor of Arts (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science and Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science and Application Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science and Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science and Bachelor of Science (MS and BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science and Bachelor of Science#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science and Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science and Doctor of Psychology students#Master of Science and Doctor of Psychology students 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science and Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science and Management#Diploma#Bachelor of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science and Master of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science and Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science and Technology in Intelligence (MSTI) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science Biomaterials 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science Biotechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science Business\\nAdministration (MBA)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science chemical engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science Civil Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science Conflict Analysis and Resolution 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science Cybersecurity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science Cybersecurity Policy & Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science Cybersecurity#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science Data Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  167 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  514 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master Of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MASTER OF SCIENCE degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MASTER OF SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTER OF SCIENCE DEGREE  COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science degree (M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science Degree (M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science Degree (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science Degree (MSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science Degree (MSMS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science Degree (Pending) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science Degree of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       MASTER OF SCIENCE DEGREE WITH A MAJOR#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science Degree#Administraci�n de Tecnolog�as de Informaci�n 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science Degree#B. ED#Bachelor's Degree of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science degree#Bachelor of Applied Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science degree#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science degree#Bachelor of Arts#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science degree#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science Degree#Bachelor of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science degree#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science Degree#Bachelor of Mathematics Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science Degree#Bachelor of Music Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science degree#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTER OF SCIENCE DEGREE#BACHELOR OF SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science Degree#Bachelor of Science Degree#Associate of Applied Health Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                Master of Science Degree#Bachelor of Science Degree#Bachelor of Business Administration Management#Bachelor of\\nBusiness Administration Degree#Bachelor of Science Degree#Master\\nof Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTER OF SCIENCE DEGREE#BACHELOR OF SCIENCE DEGREE#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science Degree#Bachelor of Science Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science Degree#Bachelor of Science\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science degree#Bachelor of Science#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science Degree#Bachelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science degree#Bachelors of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science Degree#BR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science Degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science degree#Degree#Bachelor of\\nScience Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science Degree#Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science degree#Doctor of Philosophy degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science Degree#Doctoral Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science Degree#Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science Degree#KAMUANGA M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science degree#literature.  Graduate#Baccalaureate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science Degree#Master of Public Administration Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science degree#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science degree#Master of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science Degree#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MASTER OF SCIENCE DEGREE#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science Degree#Master of Science#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science Degree#MBA#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science degree#MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science Degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science Degree#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science Degree#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      MASTER OF SCIENCE DEGREE#POST GRADUATE DIPLOMA#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science Degree#S.'S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science degree#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science Degrees#MS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science dual degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                             MASTER OF SCIENCE EDUCATION (MSED)#MASTER OF SCIENCE ENGINEERING (MSE)#BACHELOR OF SCIENCE ELECTRICAL ENGINEERING (BSEE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science Engineering Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science Engineering Management#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science Global Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science Graduate#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science Healthcare Informatics/ Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science HR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MASTER OF SCIENCE HUMAN RESOURCES MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science I.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science in Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science in Administration Degree (MSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MASTER OF SCIENCE INFO TECHNOLOGY MANAGEMENT (MSITM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science Information System (MSIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science IT#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science Law & Cybersecurity (MSL) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science Library Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science Limnology and Wetland Manegment 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MASTER OF SCIENCE MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science Management (MSM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science Master of Healthcare Administartion 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science Microbiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science Nuclear Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTER OF SCIENCE NURSING (MATERNAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science Nursing program (MSN)#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science Nursing#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science Oceanography#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of science of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science of BU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science of Business Analytics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MASTER OF SCIENCE OF EDUCATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science of Foreign Service (MSFS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science of Management Information Systems Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science of Managing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science of Multidisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science of Occupational Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science of Statistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science of Strategic Intelligence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science of Strategic Intelligence (MSSI) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science of Structural Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science Operations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science Operations Research 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MASTER OF SCIENCE PUBLIC HEALTH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science QA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science Quality Assurance Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science Reading 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science School Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science School Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science School of Human Ecology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science Structural Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science Taxation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science Telecommunication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science Urban Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science Zoology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science, Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MASTER OF SCIENCE, COMMUNICATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science, M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science, M.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science, Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science, MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science: M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science: MSN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science: Professional Science Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science: Professional Science Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science. MS. Masters#Bachelor of Science. BS. \\nBachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science(M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science(M.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science(MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master Of Science(MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science/ Administration of justice and          (pursuing) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science/Administration of Justice and Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science/Engineer Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science/Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science\\n          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science\\n\\nBachelor of Agricultural Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science\\nDegree#Bachelor of Science Degree#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science\\nDegree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science\\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science\\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#a postgraduate diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#A-levels#A-Levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#A#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#AIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#and Structural Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Associate Degree#Bachelor\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#AUG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#B.A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science#B.F.A#NY A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#B.L\\n*Bachelor of Law Degree#LL.B (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#B.M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#B.S.Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#B.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#B.S#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#B.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#B.S#Master's Degree\\n\\nJuris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#B.Sc. (Technology) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#BA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master Of Science#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTER OF SCIENCE#BACHELOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#Bachelor \\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science#Bachelor and Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Bachelor Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Bachelor of  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#Bachelor of \\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#Bachelor of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Bachelor of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science#Bachelor of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  118 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science#Bachelor Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTER OF SCIENCE#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#Bachelor of Arts & Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Bachelor of Arts Degree\\nMaster of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Bachelor of Arts#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Bachelor of Business Admin#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Bachelor of Business Administration Degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTER OF SCIENCE#Bachelor of Business Administration#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Bachelor of Business Administration#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Bachelor of Business Administration#Diploma (Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Bachelor of Business Administration#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Bachelor of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science#Bachelor of Chemical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#Bachelor of Civil Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Bachelor of commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Bachelor of Economic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Bachelor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of science#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Bachelor of engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   46 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#Bachelor of Engineering (B. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#Bachelor of Engineering (B.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Bachelor of Engineering#A.I.S.S.M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Bachelor of Engineering#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Bachelor of Engineering#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#Bachelor of Engineering#Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Bachelor of Engineering#Post Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                           Master of Science#Bachelor of General Studies and Bachelor of Science#Associate of Science#Associate of Arts (Administration of Justice)#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#Bachelor of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Bachelor of Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science#Bachelor of Mathematics and Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Bachelor of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#Bachelor of Pharmacy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Bachelor of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  611 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Bachelor Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#BACHELOR of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF SCIENCE#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science#Bachelor of Science Degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#Bachelor of Science degree#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Bachelor of Science Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science#Bachelor of Science Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#Bachelor of Science Honors(BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Bachelor of Science#A. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Bachelor of Science#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#Bachelor of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Bachelor of Science#Associate Degree#ADN] Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science#Bachelor of Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Bachelor of Science#Associate of Applied Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Bachelor of Science#Associate of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Bachelor of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Bachelor of Science#Associate of Arts and Sciences (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Bachelor of Science#Associate of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Bachelor of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#Bachelor of Science#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science#Bachelor of Science#Associate of Science#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Bachelor of Science#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Bachelor of Science#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Bachelor of Science#Associate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#Bachelor of Science#Associate`s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science#Bachelor of Science#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Bachelor of Science#Associates Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Bachelor of Science#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Bachelor of Science#Associates of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#Bachelor of Science#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#Bachelor of Science#B.O.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Bachelor of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science#Bachelor of Science#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Bachelor of Science#Bachelor of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#Bachelor of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science#Bachelor of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Bachelor of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 MASTER OF SCIENCE#BACHELOR OF SCIENCE#INFORMATION SYSTEMS#TECHNOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Bachelor of Science#Italian high school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Bachelor of Science#M D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#Bachelor of Science#M.S#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Bachelor of Science#Master of Business Administration#Keller Graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Bachelor of Science#Master of Public Health#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Bachelor of Science#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Bachelor of Science#Post-graduate#Associate and Teaching Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Bachelor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Bachelor of Social Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Bachelor of Social\\nWork 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Bachelor of Statistics and Computer Sciences#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science#Bachelor of Technical and Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Bachelor of Technology#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Bachelor of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MASTER OF SCIENCE#BACHELOR OF\\nARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Bachelor of\\nEngineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Bachelor of\\nEngineering (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MASTER OF SCIENCE#BACHELOR OF\\nLIBERAL ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTER OF SCIENCE#BACHELOR OF\\nSCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Bachelor of\\nTechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science#Bachelor Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Bachelor's degree#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Bachelor's Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Bachelor's degree#High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Bachelor's degree#Master's#Master's#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Bachelor's of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Bachelor\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             MASTER OF SCIENCE#BACHELOR\\nOF ARTS#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Bachelor\\nof Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#Bachelor&apos;s Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#Bachelor#Bachelor of Industrial Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science#Bachelors of \\nLiberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science#Bachelors of Arts#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Bachelors of Business Administration#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Bachelors of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Bachelors of Science#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#Bachelors of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Bachelors of Science#Associates of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Bachelors of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Bachler of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Bachlor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master Of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#BS/MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#BS&MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#BS#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#BS#AA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#BS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#BSc#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#BSN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#BSN Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#CA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Cagliari 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Columbia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#Concurrent#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#CPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#Degree#Degree Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTER OF SCIENCE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTER OF SCIENCE#DIPLOMA#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#Distinction 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Doctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Double Degree#CFASI#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#Dual Masters Degree for MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Educator Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#EMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                           Master of Science#EngineerinMaster of Science#EngineerinMaster of Science#EngineerinMaster of Science#Bachelor of Science#of Science#of Science#of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science#EXPECTED MAY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#FNP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Graduate Certificate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#Graduate Certificate#Master of Science#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Graduate Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Graduate Degree#MS#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science#Graduate#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Graduate#Bachelor of Arts#IA#Bachelor of Science#TX 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science#Graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#ITSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#Juris Doctor Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#M. S. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#M.B.A, Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science#M.B.A, Masters of Business Administration#Bangladesh, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#M.B.A, Masters ofBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#M.B.A)\\n*Master of Science#M.H.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science#M.D. of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#M.I.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF SCIENCE#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#M.S. PM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#M.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#M.S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#M.S.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#M.S.C.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#M.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#M.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#M.S.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#M.S.F.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#M.S.I.E)\\n\tMaster of Business Administration (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#M.S.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#M.S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#M.S.M#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science#M.S.M#HCAD#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#M.S.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#M.S.P.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#M.S.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#M.S.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#M.S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#M.S#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of science#M.S#Bachelor's degree#M.A.S.S#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#M.Sc IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#M.Sc. \\nArch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#M.Sc. IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#MA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Master level credits 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Master of .Science#Bachelor of .Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Master of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Master of Art#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Master of Arts#BA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Master of Arts#BA#Bachelor of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Master of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Master of Arts#Master of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#Master of Business Administration (M.S./M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#Master of Business Administration (MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#Master of Business Administration (MBA)\\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#Master of Business Administration (MBA)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Master of Business Administration (MBA)#Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Master of Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#Master of Business Administration dual degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#Master of Business Administration#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Master of Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Master of Business Administration#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Master of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Master of Business\\n    Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Master of Business\\nAdministration#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Master of Business\\nAdministration#MBA#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Master of Computer Applications#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Master of Computer Applications#Bachelor of Science (CS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Master of Divinity Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Master of Education Administration#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Master of Education#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Master of Engineering Beijing#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Master of Finance#Bachelor of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Master of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Master of Health Care Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Master of Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Master of Human Resource Management#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Master of Information 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Master of Information Technology#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Master of International Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science#Master of International Management#MIM#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Master of Military Studies#Master of Business Administration (MBA)#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Master of Public Administration#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science#Master of Public Affairs (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Master of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of science#Master of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   78 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#MASTER OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Master of Science (MSc)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science#Master of Science (Technology) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Master of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#Master of Science Degree#Bachelor of Science#Bachelor of Science Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#Master of science degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Master Of Science#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#Master of Science#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Master of Science#Bachelor degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Master of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Master of Science#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Master of Science#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Master of Science#Bachelor of Engineering#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTER OF SCIENCE#MASTER OF SCIENCE#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#Master of Science#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#Master of Science#Bachelor of Science#A.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Master of Science#Bachelor of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science#Master of Science#Bachelor of Science#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Master of Science#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Master of Science#Bachelor of Science#Graduate Certificate#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Master of Science#Bachelor of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Master of Science#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Master of Science#Bachelor Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Master of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Master of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Master of Science#Master of Public Health#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Master of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Master of Science#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science#Master of Science#Master of Science#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Master of Science#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Master of Science#MIS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Master of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Master of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Master of\\nScience#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science#Master s Degree#Bachelor of Science#B.Sc. (IT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Master s Degree#Bachelor s Degree#Associate of Business Administration#Associate s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MASTER OF SCIENCE#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#Master's Degree#Bachelor of Liberal Studies#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Master's degree#Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Master's of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#Master's of Science#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Master#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science#Master#Bachelor of Economics#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science#Masters of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#Masters of Business Administration#Masters of Science Supply and Acquisitions ;UMUC#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Masters of HR Management degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#Masters of Science#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#Masters of\\nBusiness Administration#Bachelors\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Masters#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#Masters#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#Masters#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science#Masters#Master of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   71 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF SCIENCE#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#MBA#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science#MBA#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#MBA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#MBA#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#MBA#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#MBA#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#MBA#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#MCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of science#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master Of Science#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#MD#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#Medical Doctorate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#MHS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#MPA#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#MPhil#Masters of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   59 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#MS - CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#MS - IST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#MS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTER OF SCIENCE#MS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#MS HRM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#MS IS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#MS MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#MS-IST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#MS-ITM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#MS-ME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#MS, A) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#MS.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#MS#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#MS#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#MS#Bachelor of Business Administration (B.B.A#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#MS#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#MS#Bachelor of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Science#MS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#MS#Bachelor of Science Business Administration (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#MS#Bachelor of Science#B.S#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#MS#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#MS#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#MS#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#MS#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#MS#Bachelor's Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#MS#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#MS#Engineer s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#MS#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#MS#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#MS#Master of Science (M.Sc#Honours degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science#MS#Master of Science (MSc)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science#MS#Master of Science#Masters#MS#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Science#MS#Master of Science#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#MS#Master of\\nBusiness Administration (MBA)#Bachelor of Science#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#MS#MBA#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#MS#Minor's Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#MS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#MSA#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#MSAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#MSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Msc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF SCIENCE#MSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#MSc) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Science#MSc#Doctor of Science#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#MSc#Master of Science (MSc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#MSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#MSF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#MSFS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#MSHR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#MSIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#MSIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#MSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#MSM Degree#MSM Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#MSM) - Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#MSM) Degree#MSM Degree#MSM Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Science#MSM#Bachelor of Science#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#MSME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#MSN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#MSPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#MSPM/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#MSTM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Nursing, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science#of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#P.O 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#PhD degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#PM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#Post Graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Science#Post Graduate#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Science#Post-Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Post-Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Postgraduate International Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Science#Practitioner Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Science#Received Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Science#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#Senator of GSA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#TN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Treasure of Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#U.S. master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Science#UMUC#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Science#UMUC#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Science#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Science#Undergraduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Science#UniversityBachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#US 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science#VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Science#Virginia Tech        Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Science<BR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of ScienceDegree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Sciencein 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of ScienceMajor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of ScienceNewark 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  109 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Sciences (M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Sciences (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Sciences (M.S#Bachelor of Engineering.\\n(B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Sciences [MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Sciences Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Sciences at#DEUG#Bachelor Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Sciences, BST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Sciences, Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Sciences#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Sciences#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Sciences#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Sciences#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Sciences#Bachelor of Technology#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Sciences#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Sciences#Master of Business Administration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Sciences#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Sciences#MSc#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Secondary Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Securities#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                   Master of Security Analysis#MSAPM) & Master of Business Administration (MBA)#Graduate Research Assistantship (GRA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Security Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Senior Housing Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of social 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Social 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Social Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Social Medicine and Sanitary Management#M.D#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Social Science (M.Soc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Social Science (MSS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Social Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Social Sciences\tDepartment of Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Social Sciences (MSc) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Social Welfare 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Social Welfare (MSW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of social work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Social work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  604 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER OF SOCIAL WORK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Social Work\t\t\t\t\tBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Social Work          Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Social Work          Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Social Work (M. S. W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Social Work (M. S. W ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Social Work (M.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MASTER OF SOCIAL WORK (M.S.W) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Social Work (MSW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Social Work (MSW) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Social Work (MSW)#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Social Work (MSW)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Social Work Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Social Work and Master of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Social Work Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Social Work Bachelor of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Social Work degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Social Work Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Social Work degree (M.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTER OF SOCIAL WORK DEGREE#POST GRADUATE DIPLOMA#BACHELOR OF ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Social Work Policies and Administration (MSW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Social Work Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Social Work.\\n    \\n          BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Social Work#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Social Work#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Social Work#Bachelor of Arts#AA#Associates  \\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Social Work#Bachelor of Arts#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Social Work#Bachelor of General Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Social Work#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Social Work#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Social Work#Bachelor of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Social Work#Bachelor of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Social Work#Diploma#INSURANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Social Work#LICSW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Social Work#M.S.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Social Work#Master of Art#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Social Work#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Social Work#MSW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Social. Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Social#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Sociology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Sociology (M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of software Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Software Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   41 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Software Engineering (M.Sw.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Software Engineering (MSE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                           Master of Software Engineering\\nInstitute of Business Administration, Pakistan          Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Software Engineering#Bachelor of Computer Science#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Software Engineering#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Software Engineering#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Software Engineerlng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Software Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Software Systems Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Space Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Spatial Economy#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Special Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Special Education teaching children 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Sport Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Sport Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Sport Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Sports 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Sports Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Sports Industry Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Sports Physiotherapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Sports Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Statistic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Statistical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Statistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Statistics and Operations Research 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Statistics degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Strategic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Strategic Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Strategic Foresight 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Strategic Intelligence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Strategic Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   53 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Strategic Studies (MSS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Strategic Studies Degree#Master of Science Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Strategic Studies#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Strategic Studies#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Strategic Studies#Master of Laws (L.L.M#Juris Doctorate#J.D#Bachelor of Arts Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Strategic#Master of Environmental Pollution Control#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Structural Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Studies#Master s Degree#Graduate#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Supply 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Supply Chain Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Sustainable 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Sustainable Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Sustainable Real 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Sustainable Solutions 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Systems Analysis and Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Systems and Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Systems Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Systems Engineering Management Virginia Tech#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Systems Engineering#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Tax 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Tax#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Taxation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Teaching 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Teaching Chinese 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Teaching#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Teaching#Bachelor of Fine Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Teaching#Bachelor of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Teaching#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Teaching#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Tech#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Technical and Scientific Communication (MTSC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Technical Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Technical Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Technical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   97 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Technology (M.T 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Technology (M.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Technology (M.Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Technology (M.Tech) \\n IIT#Bachelor of Engineering (B.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Technology (M.Tech) \\nIIT#Bachelor of Engineering (B.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Technology (M.Tech)\\n          IIT#Bachelor of Engineering (B.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Technology (M.Tech#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Technology (M.Tech#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Technology (MSEE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Technology Biotechnology#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Technology degree#M. Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Technology Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Technology of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of Technology VLSI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Technology#Bachelor of Business Management & Information Technology Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Technology#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Technology#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Technology#Bachelor of&nbsp 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Technology#M Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Technology#M.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Technology#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Telecom 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Telecom Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Telecommunication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Telecommunication and MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Telecommunication and Network Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Telecommunications Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Telecommunications Engineering#Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Telecommunications Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Textiles 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of the 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of the Arts (M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of the Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of the Arts#Bachelor of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of the Science of Teaching 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Theological Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Theological Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Theological Studies (M. T. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Theological Studies (M.T.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Theological Studies (M.Th) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Theological Studies (MTS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Theological Studies (MTS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Theological Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Theological Studies#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Theological Studies#Bachelors of Ministry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Theological Studies#Bachelors of Theological Studies (BTS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Theological Studies#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Theological Studies#Master of Social Work#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Theology (Th.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Theology#MBA#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Therapeutic Herbalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Tourism Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  103 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Tourism Administration (AMTA), Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Tourism Administration (M.T.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Tourism Administration (MTA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Tourism Administration Present 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Tourism Administration#Bachelor of Arts#Intermediate#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of Toxicology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Ubran and Regional Planning#Bachelor of Arts#BA#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Urban 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Urban & Environmental Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of Urban & Environmental Planning degree#Bachelor of English 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of Urban & Environmental Planning\\n          Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Urban & Regional Planning (MURP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Urban & Regional Planning#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of Urban Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of Urban and Environmental Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Urban and Environmental Planning#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of Urban and Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Urban and Regional Planning Urban Affairs and Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Urban and Regional Planning#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Urban Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of Urban Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Urban Design#Bachlors of Arcchitecture Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of Urban Education (M. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Urban Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Urban Spatial Analytics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of Veterinary Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of Veterinary Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of Visual Arts Multimedia#Bachelor of Visual Arts#Bachelor of\\nVisual Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of Vocal Pedagogy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of Vocal Performance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of Water 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of Yoga 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of. Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of\\n\t\tInternational Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of\\n          Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of\\n          Project Management\\n          (PMP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of\\n        Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of\\n   Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of\\n  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of\\n Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of\\nAccountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of\\nAccountancy#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of\\nArchitecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master of\\nArt 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of\\nArts Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of\\nArts Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of\\nArts#BA/MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of\\nArts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of\\nArts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of\\nArts#Bachelor of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of\\nArts#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of\\nArts#M.A.R.S#Juris Doctorate#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of\\nBusiness Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of\\nBusiness Administration (MBA)#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of\\nBusiness Administration (MBA)#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of\\nBusiness Administration (MBA)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of\\nBusiness Administration (MBA)#Bachelor\\nof Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of\\nBusiness Administration (MBA)#Master of Public Policy#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of\\nBusiness Administration (MBA)#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of\\nBusiness Administration, (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of\\nBusiness Administration#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of\\nBusiness Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of\\nBusiness Administration#Bachelor of Arts Degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of\\nBusiness Administration#Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of\\nBusiness Administration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of\\nBusiness Administration#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of\\nBusiness Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTER OF\\nBUSINESS ADMINISTRATION#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of\\nBusiness Administration#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of\\nBusiness Administration#Bachelor of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of\\nBusiness Administration#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of\\nBusiness Administration#Bachelor of\\nScience#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of\\nBusiness Administration#Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of\\nBusiness Administration#Bachelor\\nof Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of\\nBusiness Administration#Bachelors of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of\\nBusiness Administration#Master of Economics#Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of\\nBusiness Administration#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of\\nBusiness Administration#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of\\nBusiness Administration#Master\\nof Journalism#Bachelor of Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of\\nBusiness Administration#Master#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of\\nBusiness Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of\\nBusiness Administration#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of\\nBusiness Administration#Post Graduate Diploma#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                               Master of\\nBusiness AdministrationUniversity of#Master of Science#Bachelor of Art#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of\\nCommerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of\\nComputer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of\\nComputer Science#Master#BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of\\nEducation#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of\\nEngineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of\\nEngineering Management (MEM)#Bachelor of\\nScience#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of\\nEngineering#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of\\nGovernment Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master of\\nHealth Administration#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master of\\nHealth Administration#Bachelor of Science#HONORS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of\\nInformation Systems#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of\\nLaws (LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master of\\nLaws#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of\\nLiberal Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of\\nMusic#Bachelor of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master of\\nProject Management#Bachelor Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of\\nPublic Health#Juris Doctor#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTER OF\\nSCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of\\nScience Degree#S.''S NARAYAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master of\\nScience\\n(M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of\\nScience\\nBachelors\\nof\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of\\nScience#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of\\nScience#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master of\\nScience#Bachelor of Business Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of\\nScience#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master of\\nScience#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of\\nScience#Bachelor of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master of\\nScience#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of\\nScience#Bachelor of Science#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of\\nScience#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of\\nScience#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master of\\nScience#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master of\\nScience#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of\\nScience#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master of\\nSocial Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master of\\nSocial Work#M.S.S.W#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master of\\nSoftware Engineering#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MASTER OF#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master OF#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master ofArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master ofBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master ofBusiness Administration (mba) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master ofBusiness Administration#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master ofComputer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master ofPublic Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master ofPublic Administration (mpa) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master ofPublic Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Master ofPublic\\nAdministration#mpa#Master ofBusiness Administration#mba#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master ofscience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master ofScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master ofScience (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master on Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master on Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master online 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master or Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master Planning Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master PMP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master Public Administration#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master s Degree#ACCA#ACCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master s Degree#Associate s Degree#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master s Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master s Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master s Degree#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master s Degree#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master s Degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master s Degree#Bachelor of Architecture (B.Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master s Degree#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master s Degree#Bachelor of Arts (B.A#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master s Degree#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master s Degree#Bachelor of Civil Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master s Degree#Bachelor of Commerce (B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master s Degree#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master s Degree#Bachelor of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master s Degree#Bachelor of Engineering (B.E#12th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master s Degree#Bachelor of Engineering (BE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master s Degree#Bachelor of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master s Degree#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master s Degree#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master s Degree#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master s Degree#Bachelor of Science#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master s Degree#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master s Degree#Bachelor of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master s Degree#Bachelor of Technology (B.Tech#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master s Degree#Bachelor of Technology (B.Tech#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master s Degree#Bachelor of Technology#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master s Degree#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   60 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master s Degree#Bachelor s Degree#Associate of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master s Degree#Bachelor s Degree#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master s Degree#Bachelor s Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master s Degree#Bachelor s Degree#GCE A-Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master s Degree#Bachelor s Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master s Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master s Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master s Degree#Bachelor's Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master s Degree#Bachelor's degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master s Degree#Bachelor's Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master s Degree#Bachelor's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master s Degree#Bachelor's Degree#Metriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master s Degree#Bachelor's Degree#Secondary School Certificate (S.S.C) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master s Degree#Bachelor#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master s Degree#Degree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master s Degree#Doctor of Law (JD)#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master s Degree#Doctor of Medicine (M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                Master s Degree#Doctor of Philosophy (Ph.D#Master of Business Administration (M.B.A#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master s Degree#Engineer s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master s Degree#Master of Business Administration (M.B.A#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master s Degree#Master of Business Administration (MBA)#B Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master s Degree#Master of Science (M.S#Bachelor of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master s Degree#Master s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master s Degree#Master s Degree#B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master s Degree#Master s Degree#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master s Degree#Master s Degree#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master s Degree#Master s Degree#Master's degree#TV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master s Degree#Master's Degree#Advanced Graduate#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master s Degree#Master#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master s Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master s Degree#MSI#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master s Degree#Post Graduate Diploma#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master s Degree#Post Graduate Diploma#Engineer s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master s Engineering Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master s of  Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master s#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MASTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master Science Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master Science Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTER SCIENCE OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master Science#Associate Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master Science#Bachelor Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master Science#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master Science#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Science#Master#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master Student of Medical Informatics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master Tech.\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master-Degree#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master, and Bachelor degree#Master of Science#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master, E. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master, M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master, M.Sc. Degree#Bachelor Degree#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master, MBA#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master, Science Administration (MSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master,s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master?s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master?s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   34 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master?s Degree (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Master?s degree#Associate of Arts Degree#Bachelor of Arts Degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master?s Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master?s degree#Bachelor?s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master?s Degree#Bachelor?s Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master?s Degree#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master?s Degree#Master?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master?s of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master?s of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master?s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master?s of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master?s#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master?s#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master' s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master' s of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master''''s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master''''s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master''''s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master''''s degree#A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master''''s degree#B.Sc. Hon 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master''''s degree#Diplome de Licence (B.Sc. Hon#Associate Degree#M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Master''''s Degree#Master of Business Administration Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master''''s\\nDegree MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master''''s#MOHAMMED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master''s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master''s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Master''s Degree#A+ Certification#Bachelor''s Degree#Bachelor''s of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master''s Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master''s Degree#Bachelor''s Degree#Associate''s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master''s Degree#Bachelor''s Degree#Bachelor''s of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master''s Degree#Bachelor''s\\nDegree#Associate''s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master''s Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master''s\\nDegree#Master''s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master'of'Science'.'Engineering'and'Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2190 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MASTER'S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's  \t\t\t\t\t  \t\\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's          \\n     B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's         Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's         Degree\\n        \\n \\n        \\nMasters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's         Degree\\n        \\n \\n        \\nMasters Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's    of    Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's   of   Business   Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's   of   Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's   of   Professional   Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's  \\nMaster's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's  Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's (Graduate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's (M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's (M.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's (MIT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's \\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's & Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's and Bachelor degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's and Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's and Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Business Administration#Bachelor of Arts (BA)#PHR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Business Administration#Citigroup MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Business Administration#Citigroup MBA#Bachelor's Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Business of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MASTER'S CERTIFICATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Classwork 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Component 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Computer Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Contracting and Procurement/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Coursework 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Curricula 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Curriculum and Instruction#Master's#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  506 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 3390 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MASTER'S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MASTER'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   58 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree\t\\n\\n\\n\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree    \\n*Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree   \\n Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree   \\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree   \\nMaster 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree   \\nMaster Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree   \\nMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree   \\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree   \\nMaster of Technology degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree   \\nMaster programm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree   \\nMaster's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree   \\nMaster's of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree   \\nMasters of Database Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree   \\nMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree  \\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTER'S DEGREE  I.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree - M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree - M#Bachelor's Degree - B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree -MA#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree (ALM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree (LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree (LL.M)#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree (M. Div) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree (M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's degree (M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree (M.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree (M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree (MA, MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree (MA, MS)#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree (MA, MS)#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree (MA)#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree (MPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree (MPS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree (MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's degree (MS)#Bachelors degree (B.Tech) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree (MS)#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree (MSc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree (MSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree (MSW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree \\n M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree \\n MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree \\n Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree \\n Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree \\n Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree \\n MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree \\n MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree \\n\\n\\n\\nMS and BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree \\n\\nM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree \\n\\nM.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree \\n\\nMaster of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree \\n\\nMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree \\n\\nMaster of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree \\n\\nMaster of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree \\n\\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree \\n\\nMaster of Science#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree \\n\\nMaster's Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree \\n\\nMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree \\n\\nMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree \\nM.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree \\nMaster's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree \\nMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree \\nMSCIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree <BR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree and Graduate#Master's degree#Bachelor's\\ndegree#Bachelor of\\nScience degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTER'S DEGREE I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTER'S DEGREE I.S#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree M S#Pharmacology Medical's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree M.S.\\nDegree#Bachelor's\\nDegree B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree M.S#Bachelor's Degree B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree M.S#MBA#Master of Business Administration (M.B.A#Bachelor's Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree MAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree Master of Arts#Bachelor's Degree Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Degree Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree Master of Science#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree Master of Science#Bachelor's Degree B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree Master of Science#Bachelor's Degree Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree Master of Science#Master's Degree MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree Master of Science#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree Master of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree Master's\\nDegree of Arts#Bachelor's Degree Bachelor's Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's degree MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree MBA#Bachelor's Degree BACHELOR OF SCIENCE#Bachelor's Degree BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree MBA#Bachelor's\\nDegree BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree MSLS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree of Aeronautical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's degree of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree of Arts#Post-Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree of Biological Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree of Botany 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree of Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree of Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree of International Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's degree of Pediatrics & Child health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree of Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's degree of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree of Public Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree of Public Administration#Bachelor of Arts#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's degree of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree of Science#BACHELORS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's degree of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree Student Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's degree Theological Counseling#Bachelor's degree#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree- Cybersecurity (MSSC) & Business (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's degree, diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree, M.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree, M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree, MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's degree, MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree, Possibly Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree. (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTER'S DEGREE(MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree\\n\t        \tMasters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree\\n\tBachelor and Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree\\n\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree\\n\tM. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree\\n\tM.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree\\n\tM.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree\\n\tM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree\\n\tM.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree\\n\tM.Sc. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree\\n\tMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree\\n\tMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree\\n\tMaster of Business AdministrationRelated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree\\n\tMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree\\n\tMaster of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree\\n\tMaster's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree\\n\tMaster's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree\\n\tMaster's of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree\\n\tMasters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree\\n\tMasters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree\\n\tMasters of Software Engineering (M.S.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree\\n\tMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree\\n\tMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree\\n          Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree\\n   M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree\\n   MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree\\n M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree\\n M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree\\n Master of Business Administration (MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree\\n Master of Business Administration#MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree\\n Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree\\n Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree\\n MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree\\n MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree\\n*Masters of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree\\n\\n\tM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree\\n\\n\\n \\n\\nMaster of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree\\n\\n\\n\\nMasters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree\\n\\nBachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree\\n\\nM. A#M. Div 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree\\n\\nMaster of Physics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree\\n\\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree\\n\\nMS#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree\\nBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree\\nM.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree\\nM.J 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree\\nM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree\\nMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree\\nMaster of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree\\nMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree\\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree\\nMaster's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree\\nMasters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree\\nMasters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree\\nMasters of Information Systems Management Specializing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree\\nMasters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree\\nMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree\\nMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree\\nMS and BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree#A. Master of Business Administration#MBA#Bachelor's\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#A. Master of Business\\nAdministration Degree (MBA)#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree#Additional 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's degree#ANU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#Associate Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree#Associate Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree#Associate Degree#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree#Associate#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's degree#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's degree#B. S. Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree#B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                master's degree#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's degree#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree#B.S.E#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree#B.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree#B.Sc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's degree#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's degree#BA Degree#High school degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree#BA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#BA#GS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree#BA#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#BA#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Degree#BA#PROFESSIONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree#Bachelor and Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree#Bachelor Degree of Business Administration#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's degree#Bachelor degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's degree#Bachelor of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's degree#Bachelor of Applied Science (B.A.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's degree#Bachelor of Applied Science (B.A.Sc#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's degree#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's degree#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's degree#Bachelor of Arts (B.A#Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's degree#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#Bachelor of Arts Degree with DISTINCTION#Bachelor of education/B.Ed#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree#Bachelor of Arts Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's degree#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's degree#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                 Master's degree#Bachelor of Business Administration (B.B.A#Bachelor of computer application. (B.C.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's degree#Bachelor of Commerce (B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree#Bachelor of Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's degree#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's degree#Bachelor of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's degree#Bachelor of Engineering (B.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's degree#Bachelor of Engineering (BE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's degree#Bachelor of Engineering (BE)#High school\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's degree#Bachelor of Engineering (BEng) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's degree#Bachelor of Fine Arts (BFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's degree#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree#Bachelor of Liberal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree#Bachelor of Liberal Studies#German (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's degree#Bachelor of Pharmacy (B.Pharm 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                       Master's degree#Bachelor of Science (B.Sc#Doctor of Philosophy (PhD)#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's degree#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's degree#Bachelor of Science (BS) & MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's degree#Bachelor of Science (BS) Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's degree#Bachelor of Science (BS)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's degree#Bachelor of Science (BS)#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's degree#Bachelor of Science (BS)#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's degree#Bachelor of Science degree#Associate of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#Bachelor of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's degree#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree#Bachelor of Science#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#Bachelor of Science#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's degree#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Master's degree#Bachelor of science#Higher National Diploma#Bachelor of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's degree#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's degree#Bachelor Of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's degree#Bachelor of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's degree#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's degree#Bachelor s Degree#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's degree#Bachelor's \\n\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   55 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  304 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MASTER'S DEGREE#BACHELOR'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree#Bachelor's Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree#Bachelor's Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#Bachelor's Degree#Associate Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree#Bachelor's Degree#Associate Degree#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree#Bachelor's Degree#Associate Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's degree#Bachelor's degree#Associate of Science (A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#Bachelor's Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                           Master's degree#Bachelor's degree#Associate's degree#Master of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree#Bachelor's Degree#Associate#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#Bachelor's degree#Baccalaureate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#Bachelor's Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's degree#Bachelor's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#Bachelor's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree#Bachelor's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree#Bachelor's Degree#Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree#Bachelor's Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTER'S DEGREE#BACHELOR'S DEGREE#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#Bachelor's Degree#Diploma#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree#Bachelor's Degree#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree#Bachelor's Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#Bachelor's Degree#International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's degree#Bachelor's degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree#Bachelor's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#Bachelor's Degree#None 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#Bachelor's of Engineering Computers 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree#Bachelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree#Bachelor's Study#Bachelor of Arts Degree#Bachelors of Education#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's degree#Bachelor's\\n          degree#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#Bachelor's\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#Bachelor's\\nDegree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's degree#Bachelor#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's degree#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's degree#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree#Bachelors of Arts\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree#Bachelors of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#Bachelors of Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's degree#Bachelors#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree#Bachelors#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree#Bachelor�s Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#BBA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree#BS Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#BS#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#Business Studies#M.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree#D.E.L.E. (Diploma de espa�ol 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree#Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree#Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's degree#Degree#M.K 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                             Master's degree#degree#Magist�re de Sciences de Gestion' & Master's  \\n          degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's degree#degree#Magist�re de Sciences de Gestion' & Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Degree#Degree#Master of Public Administration (M.P.A#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's degree#Degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's degree#Degree#Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree#Degree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTER'S DEGREE#DEVELOPMENT ECONOMICS (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree#Diploma of Master Degree#Diploma of Graduating of Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#Diploma#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#Doctor of Philosophy (Ph. D) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree#Doctorate#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree#F.A.L.S.S#Bachelor of Arts#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree#Graduate#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's degree#Graduate#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's degree#Graduate#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree#Graduate#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree#Healthcare Administration Degree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTER'S DEGREE#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree#HR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Degree#Jurist Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's degree#M.A#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Degree#M.Arch., Master of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's degree#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's degree#M.B.A)\\nMaster of Science degree#M.S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#M.B.A#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's degree#M.S#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Degree#M.S#M.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#M.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#MA#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#MA#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#MACL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree#Manassas 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's degree#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's degree#Master degree#Bachelor's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree#Master Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree#Master of Architecture\\nDegree#Associate's Degree#Bachelor of Science (B.Sc.) Equiv#H.S Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#Master of Arts (M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#Master of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree#Master of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's degree#Master of Business Administration (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree#Master of Business Administration (M.B.A#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's degree#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree#Master of Business Administration, (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree#Master of Business Administration#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree#Master of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#Master of Business Management (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree#Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#Master of Divinity#Master of Educational Ministries 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#Master of Engineering Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#Master of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#Master of Law (LLM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#Master of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#Master of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree#Master of Military Operational 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree#Master of Philosophy (M. Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree#Master of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#Master of Professional Studies (M.P.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Degree#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree#Master of Public Health Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's degree#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree#Master of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree#Master of Science degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree#Master of Science Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree#Master of Science#Bachelor's Degree#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree#Master of Science#Master of Business Adminstration dual degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#Master of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's degree#Master of Technology (M.Tech#Bachelor of pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#Master of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's Degree#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree#Master's Certificate#Associate of Arts Degree#Bachelor of Arts Degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's degree#Master's certificate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's degree#master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   39 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's degree#Master's degree MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree#Master's Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's degree#master's degree#associate's degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree#Master's Degree#B. A#Bachelor's Degree with DISTINCTION#Bachelor's Degree#Bachelors of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree#Master's Degree#B. A#Bachelor's Degree#Bachelor's Degree#Bachelors of Education#Master's Degree#LLB/Juris Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree#Master's Degree#Bachelor of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#Master's Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#Master's Degree#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's degree#Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#Master's Degree#Bachelor's Degree BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#Master's Degree#Bachelor's Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's degree#Master's degree#Bachelor's degree#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's degree#Master's degree#Bachelor's degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's degree#Master's degree#Doctor of Philosophy (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#Master's Degree#M. S#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's degree#Master's degree#Master s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's degree#Master's Degree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Degree#Master's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree#Master's Degree#Master's Degree#Diploma#Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Degree#Master's Degree#Postgraduate#Master&rsquo;s Degree#INBA#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree#Master's Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Degree#Master's Of Arts#Bachelor's Degree#Bachelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree#Master's of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree#Master's of Business Administration (MBA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's degree#Master#Bachelor Degree#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#MASTERS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's degree#Masters degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's degree#Masters degree#MBA#Master's degree#Bachelor of Arts degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#Masters of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#Masters of Arts#Bachelor's Degree#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree#Masters of Contract Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree#Masters of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Degree#Masters of Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#Masters of Physician 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degree#Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#Masters of Sciences Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#Masters of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's degree#Masters#Bachelor's of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree#Masters#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree#Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  105 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree#MBA   \\nDegree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#MBA (Master of Business Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree#MBA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#MBA degree#MBA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's degree#MBA#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Degree#MBA#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree#MBA#Bachelor of Art's Degree (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#MBA#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's degree#MBA#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#MBA#Bachelor's\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's Degree#MBA#BS#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's Degree#MBA#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree#MBA#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree#MBA#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's degree#MPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's degree#MS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's degree#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#NDU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#None 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's degree#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's degree#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Degree#PHD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree#PhD#Bachelor's Degree#Master's Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#PhD#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Degree#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#Post- Baccalaureate#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Degree#Post- Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degree#Post- Graduate Diploma#Bachelor of Arts#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Degree#Post-graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Degree#Post-Graduate Honors diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Degree#Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Degree#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's degree#TEFL. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTER'S DEGREE#TO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Degree#transfer#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree#WV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Degree<BR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Degrees#Master's Degree of Art#Associate's Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Diploma#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Dissertation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Education/Mathematics \\n  of Pennsylvania       Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's Education/Mathematics \\nof Pennsylvania Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's Education/Mathematics\\n  of Pennsylvania       Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Equivalence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's Equivalency 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's first degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Forensic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's GISP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's GISP#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Graduate Certificate - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Health Care Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Intelligence Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's level credits 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Military Arts and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTER'S OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's of  Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's of  Professional 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Addictions 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   85 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MASTER'S OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's of Arts#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's of Arts#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's of Arts#Bachelor's of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's of Arts#Master's of Science#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Biomedical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  158 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's Of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTER'S OF BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's of Business Administration   (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's of Business Administration (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's of Business Administration (M.B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's of Business Administration \\n  BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTER'S OF BUSINESS ADMINISTRATION DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's of Business Administration degree (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's of Business Administration Degree (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's of Business Administration Program (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's of Business Administration Program (MBA)#Bachelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's of Business Administration\\n(MBA)#Bachelor's of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's of Business Administration\\ndegree (MBA)#Bachelor's of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's of Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's of Business Administration#Bachelor of\\nApplied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of Business Administration#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's of Business Administration#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's of Business Administration#BBA#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Business Administration#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's of Business Administration#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's of Business Administration#MBA#Master's#Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Business Administration#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Business AdministrationMay 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's of Business Administrations (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's of Business Adminstration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Business Adminstration#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's of Business and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's of Business\\n     Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's of Business\\nAdministration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's of Business\\nAdministration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's of Community Planning#M.C.P.\\nBachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of EDUCATIOn 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's of Education Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's of Education degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's of Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's of Education Degree (M.ED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's of Education Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's of Education#Associate of Arts (A.A#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's of Education#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's of Education#B.A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's of Education#B.S#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's of Education#Bachelor of Arts#A.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Education#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Engineering Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's of Engineering#Bachelor of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's of Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's of Fine Art  (MFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's of Forensic Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's of Health Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's of Health Services Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's of Higher 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's of Hospitality Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of Human Resource Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of Information Systems#Master's of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's of Information Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's of International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's of International Business Management (MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of International Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's of International Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's of International Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's of International Service 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Investment 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's of Liberal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's of License 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's of Management Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's of Marine Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's of Material 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's of Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of Music#Bachelor's of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of Nursing (MSN)#Bachelor's of Science (BSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's of Occupational Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Professional Studies (MPS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's of Professional Studies#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Professional Studies#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's of Public Administration (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's of Public Health (MPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's of Public Health Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's of Public Health#Bachelor's#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's of Public Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  master's of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  360 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTER'S OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's of Science (hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's of Science (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's of Science (MSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MASTER'S OF SCIENCE ADMINISTRATION (MSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's of science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's of science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of Science degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Science degree#Bachelors of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's of Science Degree#CGPS#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of Science Degree#Graduate#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's of Science M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's of Science M.S#Bachelor's of Business Administration B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's of Science Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Science MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's of Science. Biotechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's of Science#Bachelor of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's of Science#Bachelor of Science#Associated of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's of Science#Bachelor's of Applied Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Science#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's of Science#Bachelor's of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's of Science#Bachelor's of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's of Science#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's of Science#Bachelor's of Science of Biomedical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's of Science#Bachelors of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's of Science#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's of Science#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's of Science#M.S. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's of Science#M.S.P.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's of Science#M.S#Doctor of Audiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's of Science#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                              Master's of Science#Master's of Business Administration (MBA)#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's of Science#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's of Science#MBA#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's of Science#MBA#Bachelor of\\nScience#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's of Science#MS EE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's of Science#MS#Bachelor's#Bachelor's of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's of Science#MSM#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's of Social Work (M.S.W) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's of Social Work (MSW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's of Social Work degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's of Social Work Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of Social#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of Sociology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of Technology Management#Master's of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's of Theological Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's of Theological Studies#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's of Tourism Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's of User 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's of\\nBusiness Administration#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's of\\nBusiness Administration#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's off 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Prerequisites 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's program MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MASTER'S PROGRAM MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Program of Arts (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's Programme 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Project 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Public Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Research 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Science of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's second degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's Software Engineering#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's summer study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's Systems Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Thesis 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MASTER'S THESIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's Tourism Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's:\tMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's: Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's: Master of Business Administration (MBA)#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's:#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's(M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's/Specialist Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's\\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's\\nDegree Master of Arts#Bachelor's Degree Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                        Master's\\nDegree Master of Science#Master's Degree Master of Business Administration#Bachelor's Degree Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's\\nDegree\\nMaster's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's\\ndegree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's\\nMaster's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's\\nMaster's#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's\\nprogram. MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's#Associate of Applied Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's#Associate's#Master's#Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          master's#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's#BA#Master's#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's#Bachelor of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's#Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         master's#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's#Bachelor Of Science#Associate Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's#Bachelor of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's#Bachelor pf Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master's#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's#Bachelor's (BE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's#Bachelor's degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTER'S#BACHELOR'S OF ART 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's#Bachelor's of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's#Bachelor's Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's#Bachelor's\\nArchitecture#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's#Bachelor's#Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's#Bachelor#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's#Bachelor#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's#Bachelors of Commerce (B.Com) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's#Bachelors of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Master's#Bachelors of Science#Post Graduate Diploma#Associate Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's#BS equivalent)\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's#CAM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's#Certified Associate#CAPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's#CT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             master's#doctor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's#EMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  master's#graduate#bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's#Graduate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's#High School Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's#J.D#B.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          master's#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                             Master's#Juris Doctorate degree#Bachelor's of Arts#Master's#Master's#Juris Doctoract#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's#L.L.B degree#Advanced diploma#High school graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's#Leadership Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's#Legal Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's#M.E.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's#M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's#M.P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's#M.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master's#M.S.W#Bachelor's of Social Work#B.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's#M.S#B.S.(Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's#M.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's#Mangement graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's#Master of Science#Bachelor's Degree#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's#Master of Science#MSc#Bachelor of Science#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master's#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master's#Master's degree#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's#Master's of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master's#Master's of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's#Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master's#Master's of Science Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's#Master's#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's#Master's#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master's#Master's#Master's Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's#Master's#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master's#Master's#MBA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's#Masters of Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  101 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MASTER'S#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master's#MBA#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master's#MBA#Bachelor's#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's#MBA#Bachelor's#BBA#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master's#MBA#Diploma#11th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's#MCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master's#MPA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's#MPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master's#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's#MSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master's#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master's#PhD#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                master's#PHD#Master's Degree#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master's#School of Engineering and Applied Science BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master'sin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master'sin PublicAdministration Degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master(tm)s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master* of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master*s degree (MS)#Bachelor*s degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master/ Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master/Engineering Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master\\'s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master\\'s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master\\'s Degree#A-level degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master\\n          of Science degree#Bachelor of Engineering degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master\\n   of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master\\n of Secondary Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master\\nof Applied Computer Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master\\nof Arts (MA)#graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master\\nof Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master\\nof Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master\\nof Arts#Bachelor of Arts#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master\\nof Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master\\nof Arts#Master of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master\\nof Arts#Master of Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Master\\nof Bachelor of Science Degree#Bachelor of Science Degree#Associate of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master\\nof Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Master\\nof Business Administration (MBA)#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master\\nof Business Administration#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master\\nof Business Administration#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master\\nof Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Master\\nof Business Administration#Bachelors of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master\\nof Business Administration#Master of Project 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master\\nof Business Administration#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master\\nof Business Administration#Masters of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master\\nof Business Administrations (MBA)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master\\nof Fine Arts#Bachelor of Fine Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master\\nof Information Systems (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master\\nof Public Administration#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master\\nof Science#Bachelor of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master\\nof Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master\\nof Science#Bachelor of Social Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master\\nof Science#Bachelor of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master\\nof Science#MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master\\nof Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master\\nScience#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master&apos;s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master&rsquo 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master&rsquo;s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master&rsquo;s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master&rsquo;s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master&rsquo;s Degree#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master&rsquo;s of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master&rsquo;s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master&rsquo;s#Post Graduate Diploma#Bachelors of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTER#ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master#Arts (Communication) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master#B.A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master#B.A.#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master#B.A#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master#B.A#Baccalaur�at 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master#B.A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master#B.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#B.S. of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#B.S#Associates#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master#B.Sc (ED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master#B.Sc. - Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master#B.Sc. Chemistry (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master#BA (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master#BA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      master#bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master#Bachelor Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master#Bachelor of Arts (BA)#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTER#BACHELOR OF ARTS CRIMINOLOGY MINOR#ASSOCIATE OF ARTS SPANISH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#Bachelor of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master#Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#Bachelor of Arts#Bachelor's Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master#Bachelor of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master#Bachelor of Business Administration#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master#Bachelor of Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master#Bachelor of Commerce#PK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master#Bachelor of Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master#Bachelor of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#Bachelor of Dental 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#Bachelor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master#Bachelor of Engineering (BE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master#Bachelor of Laws (LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master#Bachelor of Science#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master#Bachelor of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master#Bachelor of Science#SHRM CP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master#Bachelor of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master#Bachelor s Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master#Bachelor s Degree#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master#Bachelor Studies#B.I.S#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master#Bachelor?s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#Bachelor?s of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#Bachelor?s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MASTER#BACHELOR'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#Bachelor#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#Bachelor#ASSOCIATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#Bachelor#Associate#Master#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master#Bachelor#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master#Bachelor#High School Diplomat 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master#Bachelor#LGSW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master#Bachelor#Tecnico em processamento de dados 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#Bachelor`s of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master#Bachelors of Arts#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master#Bachelors of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master#Bachelors#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#Brazil. Degree#Master#Brazil. Degree#Doctor of Veterinary Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master#BS and Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#BS#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master#D.U.F.L. diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master#Diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master#diploma#M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MASTER#DOCTORATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MASTER#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#Graduate#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master#High Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master#High School graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#Higher Education#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master#IB International Baccalaureate#IB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Master#Institute of Business Administration#Master of Business Administration (M.B.A#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master#Instituto Tecnol�gico de Chihuahua. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master#intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            master#KU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master#M. Sc. - Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master#M.A#M.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master#M.B.A#Bachelor#B.S#Associate#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#M.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#M.C.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master#M.C.A#Bachelor s Degree#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#M.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#M.COM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#M.Com#Secondary School Certificate#S.S.C#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master#M.P.P.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#M.S. degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master#M.S.C.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master#M.S.E.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#M.S.S) degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#M.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master#M.S#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#M&E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#M#Bachelors#PMP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        master#master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        master#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master#Master Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master#MASTER DEGREE OF PUBLIC\\n          ADMINISTRATION (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master#Master Degree#Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#Master of Arts (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master#Master of Business Administration (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Master#Master of Business Administration (M.B.A#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#Master of Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#Master of Business Administration#Bachelor#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master#Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master#Master of science MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master#Master of Science#Bachelor of Science (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master#Master of Science#Doctor of Philosophy#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                              Master#Master of Science#Doctor of Philosophy#Master of Social Work#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#MASTER OF SCIENCE#MASTER OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master#Master of Sciences#M.Sc#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master#Master's  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTER#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#Master's#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master#Master#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#Master#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master#Master#Bachelor Business Administration#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master#Master#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#Master#BSEE#Master's Degree#CDP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master#Master#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master#Master#Master of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#Master#Master#Master#Executive Master#Degree#Master#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#Master#Masters of Science#Bachelors of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master#Master#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#Masters Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master#Masters#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  150 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTER#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master#MBA Master of Business Administration#B.S#InstituteA.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MASTER#MBA) & JURIS DOCTOR (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#MBA) and Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master#MBA) Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MASTER#MBA)\\n\\n\\n\\nBACHELOR of SCIENCE#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master#MBA#B.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master#MBA#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master#MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#MBA#Bachelor#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master#MBA#Bachelor#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master#MBA#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master#MBA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master#MBA#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Master#MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#MBA#MBA#Diploma#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#MCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master#MD Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#MIM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTER#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master#MPPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master#MSA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master#MSIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#NH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTER#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#Postgraduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Master#Postgraduate diploma#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master#U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master#U.S. Master of Science degree#U.S. Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Master#VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master#Valedictorian Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master`s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master`s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master`s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MASTER`S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master`s Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master`s degree#Bachelor`s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master`s Degree#Bachelor`s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master`s Degree#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Master`s Degree#M.S.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master`s Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master`s of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master`s of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master`s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Master`s of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master`s of Science#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Master`s of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Master`s\\nof Business Administration#Master`s of Health\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Master`s#Bachelor`s#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master`s#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master`s#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master= of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master=C6s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masteras Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Mastered of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Mastering of Business Fundamentals 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masterof Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masterof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTEROFSCIENCEINENVIRONMENTALSCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 7304 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MaSTERS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTERS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  168 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters\t of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters\tMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters \t   \\n \tAdditional Degree(s)\t \t \tBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters \t   \\n \tAdditional Degree#B.S#M.B.A. Corp 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters \t   \\n \tAdditional Degree#BS#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters \t   \\n \tAdditional Degree#M.B.A#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters     \tBusiness Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters       of       Business       Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters      of      Business      Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters    of    Business    Administration    (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters   of    Business    Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters   of   Arts#Bachelor   of   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters   of   Business   Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters   of   Business   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters   of   Computer   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters   of   Engineering   Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters   of   Fine   Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters   of   Fine   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters   of   Health   Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters   of   Management   Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters   of   Physician   Assistant   Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters   of   Prof.   Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters   of   Professional   Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters   of   Public   Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters   of   Public   Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters   of   Science#Bachelor   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters   of   Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters   of   Sports   Science#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters   of   Systems   Engineering   (M.S.E.) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters   of   the   Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters  of  Business  Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters  of  Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters  of  International  Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters  of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters  of  Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters  of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters  of Public Administration (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters  of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters  of Science#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters - MS#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters - Taxation & ERISA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters (GIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters (LL.M) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters (M. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters (M.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters (M.B.A#B.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters (M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters (M.S)#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters (M.S)#Bachelors (B.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters (M.S#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters (M.S#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters (M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters (M.sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters (M.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters (M.Sc) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters (MA)#BSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters (MBA)#University Degree (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters (MIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters (MS) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters (MSc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters (MSc), 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters (MSSI) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters (present) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters \\nDegree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters \\nof Public \\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters & Bachelors inAutomotive Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters & Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters & PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters Acquisition Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters Aeronautical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters and Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters and B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters and Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters and Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters and Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters and Bachelor#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters and Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters and Bachelors Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters and Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters and Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters and Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters and Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Applied Physics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Applied#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters Biomedical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Business Admin#Masters of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  123 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Business Administration          \\nBachelors of Art Business and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters Business Administration - Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Business Administration (Executive MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Business Administration (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters Business Administration (M.B.A#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Business Administration (MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters Business Administration (MBA)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters Business Administration (MBA)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Business Administration Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Business Administration, M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Business Administration, MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Business Administration#Bachelor's of Art#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Business Administration#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Business Administration#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters Business Administration#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Business Administration#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Business Administration#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Business Administration#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters Business Administration#MBA#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Business Aviation Administration (MBAA) Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters Cert 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Certificate#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters CIS#Bachelors CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters class#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters completion Dec Graduate#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Computer Science#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Computer Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Course Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  151 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1246 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MASTERS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree\tM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Degree\tMasters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree\tMasters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters Degree \t\t\\n\t\t\tMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters degree  Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters Degree - Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree -MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters Degree (B'Level ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Degree (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters degree (M.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters degree (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Degree (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Degree (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Degree (MSN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters Degree \\n \\nMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Degree \\n\\n\\nMasters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Degree \\n\\nBachelor of Business Administration and Master of Business \\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters Degree \\n\\nM. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters Degree \\n\\nM. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters Degree \\n\\nM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters Degree \\n\\nM.S. (ABT) Entomology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters Degree \\n\\nM.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree \\n\\nMaster Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree \\n\\nMaster of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Degree \\n\\nMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Degree \\n\\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters Degree \\n\\nMasters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Degree \\n\\nMasters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters Degree \\n\\nMasters of Science#Masters of \\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Degree \\nM.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Degree \\nM.S. (ABT) Entomology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Degree \\nMaster of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Degree \\nMasters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Degree \\nMasters of Business Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Degree \\nMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Degree \\nMPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Degree \\nMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree and Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters degree Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Degree Clinical Research Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree Development Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Degree I\\nDID OBTAINED A M. SC. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Degree M. A#Bachelors Degree Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Degree M.C.R.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Degree M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters Degree Master Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Degree Master of Arts#Bachelors Degree Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters Degree Masters#MBA#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters Degree MBA#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters Degree of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters Degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Degree of General Business Administration        (MGA/MS)#Bachelors Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters Degree of General Business Administration (MGA/MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Degree of Information Assurance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree of International Business Administration (MIBA)#Postgraduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree of Military Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Degree of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters Degree of Public Administration (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Degree of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Degree of Science#Bachelor of Commerce Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters Degree of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters Degree of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Degree Programs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Degree TV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters degree, MSIS (Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree. Masters of Arts#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Degree\\n\tMaster of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Degree\\n          M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree\\n*Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Degree\\n\\nMS#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters Degree\\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Degree\\nMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTERS DEGREE\\nMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Degree#Associate Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Degree#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters Degree#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Degree#B.A#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters Degree#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters Degree#B.S., B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters Degree#B.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters degree#BA degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters Degree#Bachelor Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters degree#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree#Bachelor of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters Degree#Bachelor of Education (B.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   masterS degree#bachelor of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree#BACHELOR of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters DEGREE#bachelor of science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree#Bachelor of Science#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Degree#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters degree#Bachelor's degree#Bachelors & Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters degree#Bachelor's degree#Masters degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Degree#Bachelor\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters Degree#Bachelor#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      masters degree#bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters degree#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree#Bachelors Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters Degree#Bachelors Degree#Bachelor of Science#Master of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Degree#Bachelors Degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Degree#Bachelors Degree#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters Degree#Bachelors Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Degree#Bachelors Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters Degree#Bachelors of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Degree#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters degree#Bachelors of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters Degree#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                           Masters Degree#Bachelors of Science#Associate of Arts Degree#Associate Degree#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MASTERS DEGREE#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Degree#BSE#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree#BSED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree#Business Administration degree (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Degree#Computers diploma#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Degree#CONT'D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Degree#Degree#Diploma#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters degree#Degree#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTERS DEGREE#DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Degree#Diploma of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree#Doctor of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree#Doctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters Degree#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Degree#graduate Certificate#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree#Graduate#Masters#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree#LLM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree#M. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters Degree#M. SC. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters Degree#M.A#Bachelors Degree (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters Degree#M.A#M.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters degree#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Degree#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Degree#M.B.A#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Degree#M.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Degree#M.Com#Bachelor of Commerce#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Degree#M.P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Degree#M.S. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree#M.S#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters degree#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters Degree#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters degree#Master of Arts#Bachelor of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Degree#Master of science#Bachelor of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Degree#Master of science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Degree#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                         Masters Degree#Master of Science#Bachelor of Science#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters Degree#master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Degree#master's degree#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Degree#Masters Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters degree#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters Degree#Masters Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters degree#Masters degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree#Masters Degree#Bachelor's Degree#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters Degree#Masters Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters degree#Masters Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters Degree#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Degree#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Degree#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Degree#Masters of Science#M.Sc.\\n\\n\\nTitle of Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Degree#Masters of Science#M.Sc#Bachelor's Degree#Bachelor of Science#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters Degree#Masters of Science#MS-ISA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters degree#Masters#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTERS DEGREE#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters degree#MBA) and Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters degree#MBA/MHA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Degree#MBA/MSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree#MBA#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree#MBA#Masters Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Degree#MBA#MPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree#MFC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree#MHRM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Degree#MPA#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree#MSLS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters degree#Museum of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degree#Org 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Degree#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters degree#Ph.D#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Degree#Post Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Degree#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters Degree#Post Graduate Diploma#B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters Degree#Post Graduate Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters Degree#Second Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Degree#Specialist Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters Degree#UMUC#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters DegreeCyberSecurity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Degrees#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters Development Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters Diploma#Master OF#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Diploma#MDBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters Energy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters Engineering Administration (MEA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters Entry diploma#Associate degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Equivalency B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters Equivalent degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Geography GIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Graduate#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters Health Administration (MHA-Ed)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Health Administration (MHA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Health Care Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Health Service Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Health Services Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters Health Services Administration#BSc#Bachelor of Science -  A.M.E. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters HR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters HR & OD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters in Administration and B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters in Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters in Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters in Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters in Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters in Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Information Technology (MIT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Institute AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters Institute pursued AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Level Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Level Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Management of Homeland Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters Master of social work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Masters of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters Of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTERS OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of  Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of  Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of  Biomedical Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of  Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of  Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of  Business Administration(MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of  Business Administration(MBA)#Bachelor of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of  Business Administration#MBA#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of  Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of  Physician#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of  Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of  Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Of  Science(MS)#Bachelor's Of Engineering/Sciences (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of  Science#Bachelor  of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of \\n \\nTheology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of \\nBusiness \\nAdministration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of \\nEngineering and Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of \\nEngineering Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of \\nInformation Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of \\nLandscape Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of \\nTelecommunication Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Accountancy    Expected 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Accountancy (MAC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of accounting &financial management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Accounting Controllership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Accounting\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Accounting#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Accounting#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Accouting#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Acquisition Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Acquisition Management degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTERS OF ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Administration (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Administration Science#Masters of Science \\n\\nBachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Administrative Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Administrative Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Administrative Sciences (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Adolescent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Adult Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Aeronautical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Aerospace Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Aging Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Agribusiness Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Agricultural and Applied Economics under Collaborative Masters of East Central Africa (CMAAE) programme 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Agricultural and Life Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Airpower 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Apologetics#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Applied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Applied American 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Applied Anthropology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Applied Anthropology#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Applied Behavior Analysis 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Applied Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Applied Industrial 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Applied Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Applied Organizational Management#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Applied Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Applied Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Applied Social Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Architectural Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Architectural Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Architecture (MR) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Architecture and City Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Architecture Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Architecture Virginia#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  129 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Art (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Art (MAT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Art Degree#M.A#US MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Art Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Art equivalent, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Art Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Art/ Community 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Art#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Art#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Art#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Art#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Art#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Art#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Art#Bachelors of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Art#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Art#Bachelors of Science#Associate of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1411 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MASTERS OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Arts \tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Arts          Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Arts (M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Arts (M.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Arts (M.A#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Arts (M.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Arts (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Arts (MA)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Arts (MA)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Arts & Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Arts and Juris Doctorate (dual degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   53 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTERS OF ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Arts Degree (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Arts Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Arts Degree#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Arts Degree#Bachelor of Fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Arts Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Arts Degree#Bachelors of Science Degree#Bachelors of Science Degree#MD#Masters Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Arts Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Arts Degree#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Arts Degree#MD#Bachelor of Science#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Arts Diplomacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Arts Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Arts of International Business#Master of Business Administration#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Arts, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Arts(M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Arts#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Arts#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Arts#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Arts#Bachelor of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Arts#Bachelor of Arts#honors diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Arts#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Arts#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Arts#Bachelor of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Arts#Bachelor of Science#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Arts#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Arts#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Arts#Bachelors of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Arts#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Of Arts#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Arts#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Arts#BS#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Arts#CONFLICT MEDIATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Arts#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Arts#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Arts#Degree of Masters of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Arts#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Arts#H.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Arts#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Arts#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Arts#M.A.L.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Arts#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Arts#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Arts#Master of Arts#AB#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Arts#Master of Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Arts#Master's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Arts#Master's Thesis Concert 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Arts#Master#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Arts#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Arts#Masters of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Arts#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Arts#Masters of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Arts#Masters of Public Administration#Bachelor of Arts#Bachelor of Arts#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Arts#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Arts#Masters of Science MS#Bachelor of Science Degree BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Arts#Masters of\\nArts#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Arts#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Arts#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Arts#Performing Arts (Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Arts#Post grad diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Athletic Training 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Audio Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Aviation Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Bank Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Banking and Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Behavioral Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Behavioral Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Biochemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Bioethics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Bioinformatics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Bioinformatics Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Biology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Biomedical Engineering and Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Biomedical Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Biotechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Building 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Building Construction 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Busines Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Business  Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTERS OF BUSINESS \\nADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business Accelerated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business Admin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Business Admin. MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Business Administra 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2966 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTERS of BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTERS OF BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   74 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Administration\t\t\t\t      Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Business Administration\t\t\t\t\\n\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business Administration\t(MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTERS OF BUSINESS ADMINISTRATION\t(MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration\tBBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTERS OF BUSINESS ADMINISTRATION          ANTICIPATED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business Administration          Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Administration         Bachelor of the\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Business Administration        \\n  \\nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTERS OF BUSINESS ADMINISTRATION    EXPECTED GRADUATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of business administration   december 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business Administration  (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business Administration (EMBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business Administration (Executive MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration (GEMBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business Administration (GMBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration (HR) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business Administration (IMBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration (IT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Business Administration (M. B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business Administration (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business Administration (M.B.A- Jurist Doctoral (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business Administration (M.B.A- transferred and completed Masters at CMU) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business Administration (M.B.A.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration (M.B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business Administration (M.B.A)#Bachelor of Business Administration#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Business Administration (M.B.A)#Bachelor's Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration (MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  512 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MASTERS OF BUSINESS ADMINISTRATION (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        MASTERS OF BUSINESS ADMINISTRATION (MBA) & MASTERS OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Business Administration (MBA) and M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business Administration (MBA) and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business Administration (MBA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business Administration (MBA)\\n\\n\\nMasters of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Business Administration (MBA)#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Business Administration (MBA)#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Administration (MBA)#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Business Administration (MBA)#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business Administration (MBA)#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Business Administration (MBA)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Administration (MBA)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Business Administration (MBA)#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                     MASTERS OF BUSINESS ADMINISTRATION (MBA)#BACHELOR OF SCIENCE#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business Administration (MBA)#Bachelor of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Administration (MBA)#Bachelor of Science#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Administration (MBA)#Bachelor of\\nArts (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business Administration (MBA)#Bachelor of\\nScience#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business Administration (MBA)#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration (MBA)#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business Administration (MBA)#Bachelors of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Administration (MBA)#Bachelors of Computer Applications (BCA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Administration (MBA)#Bachelors of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration (MBA)#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Administration (MBA)#Bachelors of Science#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Administration (MBA)#Bachelors Science#Bachelors of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Business Administration (MBA)#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration (MBA)#BS#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Business Administration (MBA)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration (MBA)#DPQA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Administration (MBA)#Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration (MBA)#Executive MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration (MBA)#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Business Administration (MBA)#Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Business Administration (MBA)#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration (MBA)#Masters of Public Administration (MPA)#Bachelors of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Business Administration (MBA)#Masters of Science#Bachelors of Science#Associates of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration (MBA)#MISM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business Administration (MBA)#MSc#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business Administration (MBA#Bachelors of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business Administration (MBA#Bachelors of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Administration (MBA#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Business Administration \\n(MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MASTERS OF BUSINESS ADMINISTRATION \\nDEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business Administration & M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business Administration & Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Business Administration & Management#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Administration & Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business Administration & Master of Science of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration & Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTERS OF BUSINESS ADMINISTRATION & MASTERS OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration and International Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTERS OF BUSINESS ADMINISTRATION AND MASTER OF HEALTH ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Business Administration and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Business Administration and Masters of Human Resource Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Administration and Masters of Project\\nManagement 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Administration and Masters of Science#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Business Administration and Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Business Administration and Tourism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business Administration Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Business Administration Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration Degree    \\nMBA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business Administration degree (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration Degree MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Business Administration Degree#Bachelor of Commerce Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Business Administration Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business Administration M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Administration MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTERS OF BUSINESS ADMINISTRATION WITH AN EMPHASIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business Administration-(Executive MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Administration,\t\t\t\tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business Administration, (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Business Administration, and B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business Administration: (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration??????????????????????????????? ????????????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration(MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Business Administration(MBA)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration/ IT#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business Administration\\n          (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration\\n(MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business Administration\\n*MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business Administration\\n\\n   Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration\\n\\n Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business Administration\\n\\nBachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Business Administration\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business Administration\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Business Administration\\nMasters of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business Administration\\nMasters of Human Resource Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration\\nMasters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business Administration\\nMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business Administration#B.\\nA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Administration#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Administration#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Business Administration#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTERS OF BUSINESS ADMINISTRATION#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Administration#Bachelor of Arts �V 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration#Bachelor of Arts#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business Administration#Bachelor of Arts#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Administration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business Administration#Bachelor of Business#BBIT) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business Administration#Bachelor of Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration#Bachelor of Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   46 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Administration#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business Administration#Bachelor of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration#Bachelor of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Business Administration#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business Administration#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business Administration#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business Administration#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Business Administration#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business Administration#Bachelors of Aeronautical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration#Bachelors of Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business Administration#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration#Bachelors of Business Administration#Bachelors of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Administration#Bachelors of Fine Arts#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration#Bachelors of Science#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration#Bachelors of Science#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Business Administration#Bachelors of\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Administration#Bachelors#Associate Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Business Administration#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Business Administration#DC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Business Administration#Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business Administration#Executive MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Business Administration#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Business Administration#GRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Business Administration#Juris Doctor#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration#Keller graduate school of management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business Administration#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Administration#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Administration#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Business Administration#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business Administration#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration#Master of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Business Administration#Master s Degree#B.S#B.A#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business Administration#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Business Administration#Master#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business Administration#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Business Administration#Masters of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Business Administration#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                MASTERS OF BUSINESS ADMINISTRATION#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business Administration#Masters of Education Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Business Administration#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration#Masters of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Administration#Masters of Science#Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business Administration#Masters of Sciences International Economics#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration#Masters of\\nScience (Administration) Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   58 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTERS OF BUSINESS ADMINISTRATION#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business Administration#MBA \\n\\nMasters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration#MBA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration#MBA DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Business Administration#MBA)..................... 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business Administration#MBA/M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Administration#MBA\\nBachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration#MBA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration#MBA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business Administration#MBA#Bachelor of Business Administration#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Administration#MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Administration#MBA#BBA Degree#BBA Degree#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administration#MITE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Administration#o Masters of Science#Executive MBA#Bachelor of Science (Music) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business Administration#O.S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Business Administration#UMUC#Diploma of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business AdministrationJune 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Business Administrations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business Administrations (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business Administrative 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Administrator 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business Administrator (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Adminstration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MASTERS OF BUSINESS ADMINSTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Business Admistration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business and Administration (In progress) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business and Administration, (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business and Public Administration (MBPA). \\n*B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business and Public Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Application#Bachelors of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business Association 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Business Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Business Global Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Business Intelligence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Business Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business Management (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Business Management (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business Management \\n*Masters Specialized 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business Management and Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Business Management\\n Masters Specialized 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business Management#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Business Management#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Business of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business of Administration, MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business Operations & Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Business Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Business Science#B.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business Studies (MBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Business Studies#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Business- Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Business, Present 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Business: Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business\\n    Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business\\n   Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Business\\nAdministration (M.B.A#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Business\\nAdministration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Business\\nAdministration?????????????????????? ??? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business\\nAdministration??????????????????????????????????????????????????????????????????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Business\\nAdministration(MBA)#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business\\nAdministration#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Business\\nAdministration#Bachelor of Architectural 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Business\\nAdministration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business\\nAdministration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business\\nAdministration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Business\\nAdministration#Bachelor of the Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Business\\nAdministration#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Business\\nAdministration#Bachelors of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business\\nAdministration#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Business\\nAdministration#Bachelors of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Business\\nAdministration#Bachelors of Business\\nAdministration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Business\\nAdministration#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Business\\nAdministration#Bachelors of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business\\nAdministration#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business\\nAdministration#Masters of Homeland 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Business#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Business#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Business#Bachelor of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Business#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Cell and Microbial 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Cell and Microbial Biology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Chemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Christen Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Christian Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of City & Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of City and Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of City and Regional Planning (MCRP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of City Planning (MCP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of City\\nand Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Civil Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Clinical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Clinical Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Clinical Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Clinical Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTERS OF COMMERCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Commerce (M. Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Commerce (M. Com#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Commerce#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Commercial Aviation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Communications Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Community Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Community Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Community Planning Est 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Computer Application 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Computer Applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Computer Applications (M.C.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Computer Applications (MCA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Computer Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Computer Information Science#B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Computer Information System (M.CIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   37 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Computer Science - MSCS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Computer Science (M.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Computer Science (MS)#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Computer Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Computer Science#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Computer Science#Bachelor of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Computer Science#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Computer Science#Masters of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Computer Science#Masters of Business\\nAdministration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Computer Science#Technical Degree#Bachelor \\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Computer Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Computer Software Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Conflict Analysis and Resolution 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Construction Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Continuing Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Contract Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Corporate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Counseling Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Counseling Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Counselor Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Creative Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Curriculum and Evaluation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Curriculum and Instruction 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Cyber Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Cyber security / Masters of Business\\n          Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Cybersecurity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Cybersecurity Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Database#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Defense and Strategic Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Design Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Development Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Digital 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Digital Forensics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Diplomacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Distance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Distance Education and eLearning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   80 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Divinity degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Divinity Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Divinity Religion 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Divinity w 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Divinity, M#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Divinity#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Divinity#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Divinity#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Divinity#Bachelors' of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Divinity#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Divinity#Masters\\nof Public Administration#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Early 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Economics\t(M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  330 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Education (M Ed) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Education (M. ED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Education (M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Education (M.Ed) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Education (M.Ed)#Bachelor of Education (B.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Education (M.Ed#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Education (M.Ed#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Education (Management) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Education (TESOL) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Education Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Education Administration & Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Education Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Education Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Education degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Education Degree (M.Ed) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Education Educational Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Education Focus 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Education Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Education School Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Education Secondary Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Education Teaching and Learning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Education Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Education, Administration and Supervision#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Education, NK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Education/Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Education\\n(TESOL) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Education#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Education#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Education#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Education#Bachelor of Science#Associates Degree of Applied Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Education#Bachelor of\\nArts#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Education#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Education#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Education#Diploma#Bachelor of Education The 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Education#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Education#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Education#M O#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Education#M. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Education#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Education#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Education#Masters of Urban and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Educational Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Educational Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Educational Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Electrical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Electrical Engineering#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Elementary Education Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Energy and Environmental Policy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Eng= ineering Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  122 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Engineering (M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Engineering (M.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Engineering (M.Eng) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Engineering (MEng)#Bachelor of Science (BS)#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Engineering Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Engineering Administration(MEA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Engineering Computer and Software Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Engineering Cyber Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Engineering Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Engineering Management (MEM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Engineering Management (MEM)#BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Engineering Management#Bachelor of Civil Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Engineering Management#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Engineering Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Engineering Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Engineering, M E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Engineering#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Engineering#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Engineering#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Engineering#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Engineering#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Engr 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Environment & Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Environmental 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Environmental Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Environmental Management and\\nSustainability - Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Environmental Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Exercise Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Family Nursing Practice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Family Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Fashion Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Film 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Finance\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Financial Analysis 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Financial Management (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Fine and Applied Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Fine Art (MFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Fine Art#Bachelors of Art Interior Architecture#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   68 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Fine Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Fine Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Fine Arts#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Fine\\nArts#Bachelor of Arts#Exchange 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Fine#Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Food and Agribusiness 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Food Science and Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Forensic 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Forensic Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Forensic Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Forensic Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Forensic Sciences#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Forestry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of General Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Of General Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of General Administration (MGA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of General Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Genetics & Biological Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Geographic Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Geographical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Geospatial Analysis 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Geriatric Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Global Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Global and Community Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Global Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Global Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Global Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Government 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Government Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Guidance and Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Health Administration (MHA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Health Administration Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Health Advertising 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Health and Rehabilitation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Health and Rehabilitation Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Health Care Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Health Care Administration and Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Health Care Administration#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Health Informatics Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Health Science (MHS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Health Science Administration#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Health Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Health Science#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Health Science#Bachelors of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Health Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Health Service Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Health Services Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Health Services Administration (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Health Services Administration, M.H.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Health Services Administration\\n          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Health System Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Health Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Health Systems Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Health Systems Administration (MHSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Health Systems Administration (MHSA)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Health Systems Management MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Health#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Healthcare 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of HealthCare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Healthcare Administration        Maryland 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Healthcare Administration and Masters of Business Administration dual degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Healthcare Administration/Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Healthcare Administration\\n\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Healthcare Administration#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Healthcare Innovation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Healthcare Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Healthcare Management and Informatics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Heath Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Higher Education#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Homeland Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Hospital Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of HR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Human 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Human and Social Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Human Centered Computing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Human Development and Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Human Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Human Resource Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Human Resource and Leadership Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Human Resource Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Human Resource Development (HRD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Human Resource Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Human Resource Management (MHRM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Human Resource Management (MHRM) and Masters of Business\\nAdministration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Human Resource Management#Bachelor's\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Human Resource Management#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Human Resources 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Human Resources Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Human Resources Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Human Resources Management (MHRM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Human Resources#Bachelor's of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Human Service 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Human Service Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Human Service#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Human Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Human Services Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Human#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Humanities and Sociology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of I.T#Inter#Masters of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Industrial 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Industrial Engineering Operations Research (MSIEOR) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Industrial Organizational 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of IndustrialAdministration (MBA)#Graduate School of Industrial Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Informaiton 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Information 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Information \\nTechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Information and Telecommunication Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Information Assurance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Information management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Information Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Information Management and Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Information Sciences#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Information Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Information Security and Assurance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Information System 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Information System Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   45 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Information Systems and Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Information Systems Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Information Systems Technology (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Information Systems\\nBachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Information Systems#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Information Systems#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Information Systems#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Information Systems#Bachelors of Science#Design Graduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Information Technology (MSIT) Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Information Technology degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Information Technology Degree#B.B.A#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Information Technology System 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Information Technology#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Information Technology#MBA and Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Information TechnologyJuly 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Information's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Instructional Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Int 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Integrated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Integrative Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Intellectual 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Intellectual Property 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Intelligence Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Interdisciplinary Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Interdisciplinary Studies#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of International Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of International Affairs#U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of International and Comparative Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of International and Public Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of International Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of International Business (MIB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of International Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of International Business Administration \t\t\t\t\t\t\tPresent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of International Business Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of International Business Studies (MIBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of International Business Studies (MIBS)#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of International Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of International Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of International Development and Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of International Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of International Law Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of International Law Degree#LLM#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of International Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of International Management (MIM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of International Management and MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of International Management#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of International Media 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of International Policy and Practice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of International Policy Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of International Politics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of International Public Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of International Public Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of International Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of International Relations#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of International Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of International Security Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of International Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of International Trade and Investment Policy (ITIP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of International: MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Jurisprudence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Jurisprudence degree#Masters of General Administration degree#Bachelor of Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Jurisprudence#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Justice Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Labor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Laboratory 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Landscape Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Landscape Architecture#Bachelor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MASTERS OF LAW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Law - LLM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Law (LL. M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Law (LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Law (LL.M) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Law (LL.M)#Masters of Political Science#Bachelor of Laws (LL.B#Bachelor of Laws (LLB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Law (LLM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Law (LLM)#Juris Doctor (JD)#Bachelors of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Law Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Law#Juris Doctor#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Laws          Graduation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Laws (LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Laws (LL.M) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Laws#Juris Doctor#Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Laws#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Leadership (EMBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Legal Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Legal and Ethical Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Legal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Legislative Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Liberal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Library 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Library & Information 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Library and Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Library and Information Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Library Information Science Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Library Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Library Science (M.L.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Library Science (MLS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Library Science Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Library Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Library Science#Bachelor of Fine Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Literacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Logistics Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   73 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Management (M-HRM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Management and\\n          Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Management Information System (MIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Management Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Management Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Management(MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Management#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Management#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Management#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Management#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Management#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Management#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Management#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Management#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of ManagementUniversity of Maryland 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Marine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Marine Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Maritime Spatial Planning#U.S. Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Marketing Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Mass 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Mass Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Mass Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Material 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Materials 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Mathematics\\nBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Mechanical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Mechanical Engineering#Bachelors of Mechanical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Mechanical#Bachelor of Mechanical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Medical Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Medical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Medical Science#PA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Mental Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Microbiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Military 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Military Art and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Military Arts & Sciences#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Military History 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Military Operational 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Military Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Military Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Ministry (M.M#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Ministry Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Modern Languages (M.M.L 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Molecular 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Molecular Biotechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Music (M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Musical Theatre 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of National Security Studies#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Natural Resources 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Natural Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Network Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Non 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Nonprofit 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Nonprofit Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Nursing Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Nursing#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Nursing#Graduate#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Occupational Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Occupational Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Occupational Therapy (OT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Occupational#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Organizational 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Organizational Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Organizational Communication (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Organizational Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Organizational Management#Bachelors Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Pacific International Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Paralegal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Perfessional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Petroleum Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of PH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Pharmacy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Philosophy#M. Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Philosophy#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Physical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Physical Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Physical Therapy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Physician 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Physician Assistant Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Physiology and Biophysics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Policy Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Policy Management (MPM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Political Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Political Science (MSPS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Politics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Positive Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Preventive Veterinary Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Procurement 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Procurement and 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of professional 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Professional 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Professional Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Professional Accounting#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Professional Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Professional Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Professional Real 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Professional Real Estate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Professional studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  134 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Professional Studies  Urban and Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Professional Studies (M.P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Professional Studies (MPS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Professional Studies (MPS)#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Professional Studies degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Professional Studies Publishing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Professional Studies Sustainable Urban Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Professional Studies#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Professional Studies#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Professional Studies#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Professional Studies#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Professional Studies#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Professional Studies#Masters of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Program Management (MPM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Project Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Project Management    Pending 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Project Management (MPM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Project Management Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Project Management#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Psychological Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Psychology#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Pubic Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of public 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Public 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Public \tAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Public Administrastion#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  301 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Public Administration (M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Public Administration (M.P.A#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Public Administration (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Public Administration (MPA)#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Public Administration &\\nMasters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Public Administration and Policy (MPAP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Public Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Public Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Public Administration#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Public Administration#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Public Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Public Administration#Bachelor of Arts Degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Public Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Public Administration#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Public Administration#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Public Administration#Bachelors of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Public Administration#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Public Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Public Affairs#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Public Affairs#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Public and International Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Public and Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  212 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Public Health          Present 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Public Health  (MPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Public Health  Global Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Public Health (M.P.H 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Public Health (M.P.H) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Public health (MPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Public Health (MPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   28 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Public Health \\nMasters of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Public Health & Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Public Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Public Health Curriculum Classes 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Public Health Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Public Health/MPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Public Health#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Public Health#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Public Health#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Public Health#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Public Health#Bachelor of Medicine & Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Public Health#Bachelor of Science (BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Public Health#Bachelor of Science#Associate of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Public Health#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Public Health#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Public Health#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Public Health#Honors Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Public Health#Masters of Public Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Public Heath 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Public Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Public Management#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Public Managementy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Public policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Public Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   40 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Public Policy (M.P.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Public Policy (MPP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Public Policy and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Public Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Public Service 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Public\\nAdministration (MPA)#Bachelors of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Public\\nAffairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Public#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Public#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Reading 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Real Estate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Real Estate Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Real Estate#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Recording 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MASTERS OF REHABILITATION COUNSELING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Reliability Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Religious Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Russian language and literature 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   masters of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of sCIence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 5230 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MAsters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTERS of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTERS of SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MASTERS OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  104 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Science\tMasters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Science          Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Science   Administration of, Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science (ABT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Science (Biotechnology) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science (M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science (M. Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Science (M.S.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Science (M.S.) Degree#Bachelors of Science#B.S.) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science (M.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Science (M.S) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Science (M.S)#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Science (M.S#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science (M.S#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Science (M.S#Masters of Business Administration (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science (M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MASTERS OF SCIENCE (M.SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science (M.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science (MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   96 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MASTERS OF SCIENCE (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Science (MS) Degree#CSIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Science (MS)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Science (MS)#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Science (MS)#Bachelors of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MASTERS OF SCIENCE (MS)#BACHELORS OF ARTS (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Science (MS)#Bachelors of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Science (MS)#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science (MS)#Masters of Business Administration (MBA)#Bachelors of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science (MSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Science (MSA)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Science (MSA)#Bachelors of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science (MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science (MSc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science (MSC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science (MSD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science (MSME) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science (MSMS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science (MSOL) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Science \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Science & Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Science & Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MASTERS OF SCIENCE ACCOUNTING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Science Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science Administration (MSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Science Administration (MSA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Science Administration & Supervision 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Science Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Science and Administration (MSA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Science and Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Science and Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  144 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters Of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTERS OF SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science Degree          \\nPsychology    Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Science Degree#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Science Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Science degree#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Science Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science Degree#Bachelor''''s Degree#Associate Degree (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Science Degree#Bachelors of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science Degree#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Science Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Science Degree#Masters of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Science Degree#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science Degree#MBA#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Science degree#Undergraduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Science Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Science Imaging Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science Journalism#Bachelor of Science#Associate of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Science Level of Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Science Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MASTERS OF SCIENCE Management#Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science Multinational Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Science Multinational Commerce#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Science of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science of BU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Science of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Science of Journalism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Science of Law (JSM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science of Marketing (MSM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science of Oriental Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Science of Strategic Intelligence#DIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Science of Urban and Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science School of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Science, (MSHCAD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science(MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTERS OF SCIENCE(MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Science\\nManagement#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science\\nMasters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science#ABET Accredited Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTERS OF SCIENCE#ASTERS OF BUSINESS ADMINSTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Science#B.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#BA of Health Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Science#Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#Bachelor of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Science#Bachelor of Arts (Education) and Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Science#Bachelor of Arts#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#Bachelor of Arts#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Science#Bachelor of Business Administration (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science#Bachelor of Industrial Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   82 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Science#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#Bachelor of Science#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Science#Bachelor of Science#Associate of\\nArts#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Science#Bachelor of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#Bachelor of Science#Diploma#Bachelor of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science#Bachelor of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science#Bachelor of Science#KE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#Bachelor of Technology#Masters of Science#Post Graduate Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Science#Bachelor of\\nCommerce#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Science#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Science#Bachelor's Degree#Associates of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science#Bachelor's degree#Presbyterian school mankon#Presbyterian school mankon 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of science#Bachelor&rsquo;s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Science#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Science#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Science#Bachelors of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Science#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Science#Bachelors of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science#Bachelors of Arts#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of science#Bachelors of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Science#Bachelors of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Science#Bachelors of Engineering#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Science#Bachelors of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   67 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Of Science#Bachelors Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Science#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Science#Bachelors of Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Science#Bachelors of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Science#Bachelors of Science#Associates of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Science#Bachelors of Science#Bachelors of Liberal Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Science#Bachelors of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Science#Bachelors of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Science#Bachelors of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science#Bachelors of\\nArt#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#Bachelors of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science#Bachelors of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Science#Bachelors#BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science#BS/BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science#CPD#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#CSIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science#CURRENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#Dietetics\t\tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Science#Diploma#Post-Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Science#Doctor of Health Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#ECD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#ENTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science#Fairfax VA (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTERS OF SCIENCE#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#Graduate Degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Science#Graduate#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Science#HCM & MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Science#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Science#Honor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science#IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Science#Juris Doctor (JD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science#Juris Doctor (JD)#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science#M.S. ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science#M.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Science#M.S.B.A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science#M.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science#M.S.H.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science#M.S.L.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science#M.S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science#M.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science#M.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science#M.Sc.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Science#M.Sc#Bachelor of Science#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Science#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#Master of Business Administration (MBA)#Barchelor of Science (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Science#Master of Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#Master of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTERS OF SCIENCE#MASTERS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Science#Masters Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science#Masters Business Administration#Bachelors of Arts#High School, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Science#Masters Certificate#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Science#Masters of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Science#Masters of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Science#Masters of Business Administration (MS/MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#Masters of Business Administration#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science#Masters of Business Administration#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#Masters of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#Masters of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#Masters of Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Science#Masters of Public Affairs 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science#Masters of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science#Masters of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Science#Masters of Science#Bachelor of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#Masters of Science#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Science#Masters of Science#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       masters of science#Masters of Science#bachelors of science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science#Masters of Science#Bachelors\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Science#Masters of Science#Bachelors#PHD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Science#Masters of Science#M.Sc.A#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#Masters of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                 Masters of Science#Masters of Science#Masters of Science#Masters of Science#Masters of Science#Masters of Science#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science#Masters of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science#Masters of Technology Management (EMTM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Science#Masters#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Science#Masters#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science#Masters#MBA#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Science#matriculated#Bachelor of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTERS OF SCIENCE#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Science#MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Science#MBA#Masters#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#MIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#MPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science#MPM#Masters of\\nBusiness Administration (MBA)#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science#MS Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Science#MS-ISA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#MS#Masters of Project Management Professional (PMP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTERS OF SCIENCE#MSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#MSCS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Science#MSIA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Science#MSIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Science#NE#NE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Science#Post Graduate Diploma#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Science#Post-Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Science#Project ManagementBachelor of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of science#Undergraduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Science#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   45 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MASTERS of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Sciences in Engineering (MSE)#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Sciences Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Sciences International Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MASTERS of Sciences#BACHELOR of Sciences#CERTIFICATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Sciences#Bachelor of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Sciences#M.S.P.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Sciences#MBA#B.S.E#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Sciences#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of ScienceUniversity of Phoenix#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Scient#Bachelors of Science#Associate Degree#MS\\n\\n Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Security Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Security Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of social 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Social 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Social \t\t\t\tWork Degree\\n\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Social Enterprise (MSSW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Social Intervention 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Social Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Social Science#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Social Science#MSoc. Sc. SEM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Social Sciences: Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Social work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  211 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTERS OF SOCIAL WORK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Social Work (M.S.W) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Social Work (MSW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Social Work (MSW)#Masters of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Social Work Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Social Work degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Social Work Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Social Work degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Social Work License 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Social Work, (MSW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Social Work#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Social Work#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Social Work#Bachelors of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Social Work#Masters of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Social Work#MSW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Social Worker 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of software 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Software Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Software Engineering#B.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Software Engineering#Joint Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Software Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Special Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Special Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Speech Pathology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters of Sport Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Sport Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Sports 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Sports Industry Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Sports Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Strategic Intelligence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Strategic Intelligence#Master's degree#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Strategic Intelligence#Masters of Computer Science#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Strategic Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of Strategic Security Studies#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of Strategic Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Surgery Human Anatomy (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of Surgery in ophthalmology (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of Sustainability Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Sustainable 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of SW#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of System Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Systems Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Taxation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Taxation (MST) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Taxation Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Taxation Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Teaching 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Teaching (MAT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Technology Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Technology Management#degree#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Telecommunications\\n   Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of the 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of the Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of the Science#Masters of Business Administration#Bachelors of the Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of Theological Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Theological Studies \\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Theological Studies\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Theology (TH. M) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Theology (Th.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of Theology (Th.M) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Tourism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Tourism Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Tourism Administration\\nDegree#Master of Tourism Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Tourism and Hospitality Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of Tourism and Recreation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Transportation Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters of Urban 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Urban and Environmental Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Urban and Regional 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of Urban and Regional Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of Urban and Regional Planning (MURP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of Urban Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of Workforce Educational Leadership 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of Writing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of*Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters of/Slence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters of\\n        Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of\\n        Science#MSBA)\\n        Graduate#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of\\n  Ministry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of\\nBusiness Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of\\nBusiness Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of\\nBusiness Administration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of\\nBusiness Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of\\nBusiness Administration#Bachelor of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters of\\nBusiness Administration#Bachelor of\\nScience#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of\\nBusiness Administration#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters of\\nBusiness Administration#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of\\nBusiness Administration#Bachelors of\\nBusiness Administration#PROFESSIONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters of\\nBusiness Administration#Bachelors\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of\\nBusiness Administration#Masters of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of\\nBusiness Administration#Masters of Homeland 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters of\\nBusiness Management, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters of\\nDivinity Degree#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of\\nEducation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Masters of\\nInternational Business Administration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of\\nPublic Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of\\nScience Degree#BachelorAs\\nof Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters of\\nScience#Bachelor of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters of\\nScience#Bachelor of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters of\\nScience#Bachelors of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of\\nScience#Bachelors\\nof Arts#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of\\nScience#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters of\\nTheology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MASTERS OF#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters of#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters ofBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters ofScience Info 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Personell Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Printers Of America Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Professional 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters Program (MS)#Bachelors degree (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters Project#M.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Public Administration (MPA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters Public Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters Public Administration#Bachelor of Science Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters Public Administration#Bachelor of\\nScience Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters Science Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters Science of management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters Specialized#Masters of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters Studies Comm. Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters Studies#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters System and Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters Taxation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters Theological Studies. (MTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters Tourism Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters XMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters, Education (M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters, Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters, graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters, Masters of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters, MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters, MBA (Master of Business Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters, MPA- 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters, of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters, Regional Planning (MRP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters:      M. Div. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters: Healthcare Administration: Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters. UCLA#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters' Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters' degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters' Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters' degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters' Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters' International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters' level degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters' level Ingenieur degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters' of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters' of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters' of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters' of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters' of Science#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters' of Science#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters' program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTERS's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters's level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters/Masters of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters\\n(MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters\\nDegree Master of Science#Bachelors Degree Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                              Masters\\nDegree Master of Science#Masters Degree Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters\\nof Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters\\nof Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters\\nof Business Administration (MBA)#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters\\nof Business Administration Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters\\nof Business Administration#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters\\nof Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters\\nof Interdisciplinary Studies#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters\\nof Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters\\nof Public Health#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters\\nof Science (M.S)#Bachelor of Engineering (B.E) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters\\nof Science Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters\\nof Science#BA of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#12th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Advanced Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Advanced Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#B-Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          masters#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters#B.A#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters#B.A#Board of Governors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#B.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#B.Com#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#B.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   37 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters#B.S - Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#B.S.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#B.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#B.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#B.S#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#B.Tech#High School#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#BA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#BA#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#BA#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#BA#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#BA#Master's level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MASTERS#BACHELOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#Bachelor  of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#Bachelor of Architecture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   58 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MASTERS#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MASTERS#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Bachelor of Arts Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#Bachelor of Arts#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#Bachelor of Arts#Associate of Arts (AA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters#Bachelor of Business \\nAdministration#H. B. Beal Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters#Bachelor of Business Administration#Associate#Associate of Arts#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#Bachelor of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters#Bachelor of Civil Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#Bachelor Of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#Bachelor of Commerce#B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters#Bachelor of Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#Bachelor of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#Bachelor of Engineering (BE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#Bachelor of Health Sciences concentrated#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#Bachelor of Liberal Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#Bachelor of Medicine and Surgery (MBBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#Bachelor of Modern 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#Bachelor of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Bachelor of Physiotherapy (B.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   77 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters#Bachelor of Science (B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#Bachelor of Science Degree#Associate Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#Bachelor of Science degree#Associate of Arts and Sciences degree#Associate of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#Bachelor of Science Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Bachelor of Science Degree#Associates\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#Bachelor of Science#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#Bachelor of Science#Associate in Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#Bachelor of Science#Associates Degree#Associates \\nDegree#Bachelor of Science#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#Bachelor of Science#Associates Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#Bachelor of Science#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#Bachelor of Science#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#Bachelor of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#Bachelor of Science#Diploma and Higher Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#Bachelor of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#Bachelor of Sociology & Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Bachelor of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Bachelor of Technology (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#Bachelor of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters#Bachelor?s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#BACHELOR'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#Bachelor's Degree In Science (PHYSICS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#Bachelor's degree#Bachelor of Laws (LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Bachelor's of\\nScience#Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Bachelor's#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#Bachelor#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#Bachelor#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters#Bachelor#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters#bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   64 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#Bachelors Degree#Bachelor of Arts (AB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#Bachelors of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#Bachelors of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Bachelors of Political Science#Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   24 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#Bachelors of Science#Associates of Applied\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters#Bachelors of Science#Bachelors of Science#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#Bachelors of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Bachelors of Sciences (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#Bachelors of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#Bachelors of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#Bachelors of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#Bachelors Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#Bachelors\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Bachelors#AA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#Bachelors#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#Bachelors#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters#Bachelors#LLB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#Bachelors#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#Bachelors#Nursing S.D.A#E. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters#BANLADESH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#BS#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters#BS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#CGPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters#degree of Master of Science (MS)#Master of Business\\nAdministration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#DEGREE#Bachelor of Technology (B.Tech, Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#DESS (corresp. M.Sc#Master Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#Diploma#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#Diploma#Diploma#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#Doctor of MedicineLegazpi City#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Doctoral Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters#EMTM / MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#ENTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#examinations of Diploma#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#General MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#Graduate Certificate#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#Graduate school of Arts and Sciences#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters#graduate\\nschool of business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#Graduate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Graduate#Graduate#Bachelor\\nof Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#GWU#Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#helors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#Higher Education#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#International Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Juris Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#Juris Doctorate \\n\\nBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#K.S#Bachelors#K.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#lines of MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#LL.M#B.L 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#LL.M#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#LL.M#MBA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#LLM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#M. Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#M. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters#M. Engineering#Bachelor of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#M. P. A. S#Bachelor of Science#Associate of Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#M.A.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#M.A#Bachelor of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#M.Ac.)\\nB.B.A#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#M.Arch 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MASTERS#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#M.B.A#Bachelor of Science (B.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#M.B.A#Diploma#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#M.B.A#Masters of Science#M.S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#M.B.A#Masters#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#M.B.B.S (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#M.B.B.S#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#M.C.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#M.C.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#M.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#M.COM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#M.E#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#M.Eng)\\nBachelors in Engineering (B.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters#M.Eng)\\nBachelors in Engineering (B.Eng) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#M.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#M.H.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#M.I.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#M.IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#M.P.A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#M.P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#M.S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#M.S#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#M.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#M.U.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#MA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#MA#Bachelor's#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#Master Degree#M.C.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters#Master of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MASTERS#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#Master of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#Master of Business Administration (B.B.A#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters#Master of Business Administration (M.B.A#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters#Master of Business Administration\\nMasters#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#Master of Business\\nAdministration#Bachelors#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#Master of Education#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#Master of Fine Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#Master of International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Master of Philosophy#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#Master Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#Master of Science degree#MBA. \\n\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#Master of Science of Strategic Intelligence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#Master of Science#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#Master of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#Master of Science#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#Master of Science#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#Master's degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#Master's degree#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#Master's Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#Master's#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters#Master#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#Master#MBA#Bachelors#BBA#Post Graduate Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   71 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#MASTERS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MASTERS#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#Masters of  Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#Masters of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Masters of Arts#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#Masters of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters#Masters of Business Administration (MBA)#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#Masters of Business Administration and Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#Masters of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#Masters of Education#Bachelor's#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Masters of Public Health (MPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#Masters of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#Masters of\\nEngineering#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters#Masters#B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#Masters#B.s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#Masters#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#Masters#Bachelor Business Administration#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#Masters#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#Masters#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#Masters#Bachelor of Science (BSc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#Masters#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#Masters#Bachelors of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Masters#Bachelors#M.Sc. (ECE)#M.Engg. (ECE)#B.Sc. (EEngg.) (ECE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters#Masters#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Masters#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#Masters#MCmS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  301 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTERS#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#MBA       Masters#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters#MBA - MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#MBA)\\nDiploma#Diploma#Bachelor of commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#MBA/HRM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#MBA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#MBA#Bachelor in Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#MBA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters#MBA#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters#MBA#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#MBA#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#MBA#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Masters#MBA#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters#MBA#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#MBA#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#MBA#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#MBA#Bachelors' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#MBA#Bachelors#BBA#Bachelors of Science (BSC)#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters#MBA#Bachelors#BBA#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#MBA#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#MBA#Diploma#Master of Arts#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#MBA#HRM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#MBA#Masters#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MASTERS#MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#MBA#Medical Doctor (M.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#MBA#Post Graduate#Masters#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#MBA#Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#MBA#VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#MCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MASTERS#MCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#MDE#ADN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#MDIV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#MHA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#MIM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Masters#MIM#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#MISM) and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Masters#MPA) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#MPA#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#MPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#MPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   41 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MASTERS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#MS MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters#MS) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#MS#Bachelors#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Masters#MS#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters#MS#MBA#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters#MS#Second Language (TESOL) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters#PG Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Ph.D. \\n\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          masters#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#Post Graduate Diploma#B.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#Post graduate Diploma#B.Sc#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Masters#Post graduate Diploma#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Post Graduate diploma#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#Post Graduate Diploma#BBA)\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Masters#Post Graduate#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#Post-Graduation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#Postgraduate Diploma#College of Business     Education CBE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Masters#Profession Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#RKNEC#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Masters#Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Standing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Masters#SVCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#TBD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Masters#Teaching Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Masters#U.S.A) Masters#MBA#Bachelors Degree#U.S.A#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Masters#UMBC#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Masters#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Masters#WOCN#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Masters#WV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Masters#XLRI#Bachelors of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Mastersof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MASTERSOFARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Mastersr of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Mastery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master� s of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Master�s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master�s  Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master�s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Master�s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MASTER�S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Master�s Degree (ALM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master�s Degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master�s Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master�s of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master�s of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Master�s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Master�s#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master�Ys Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master��s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Master��s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Master��s of Science#Bachelor��s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MASTOR OF SCIENCE STUDENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Mastors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Mastr of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MAT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MAT#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Mater   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Mater of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Mater of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Mater of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Material engineering, (BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Material Handing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Material Handing Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Material Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Maters (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Maters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Maters of Business  Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Maters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Maters of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Math & English Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Math Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Mathematics (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Mathematics & Physics Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Mathematics and Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Mathematics Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Mathematics Studies-no degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Mathematics, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MathematicsM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MathematicsPh.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Matric 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MATRIC (Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Matric#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Matric#Marticulation#B.Sc#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Matric#Matriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Matriculate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Matriculate M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Matriculate#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         matriculated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Matriculated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Matriculated Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Matriculated M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Matriculated#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Matriculated#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Matriculated#Intermediate#diploma#B.COM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      matriculated#Master of Arts#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       matriculated#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Matriculated#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Matriculated#Masters of Business Administration & Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Matriculated#MS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Matriculating 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Matriculating MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Matriculating, Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        matriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Matriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Matriculation 10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Matriculation Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Matriculation Exemption 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Matriculation#10+2#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Matriculation#B.A#Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    matriculation#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Matriculation#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Matriculation#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Matriculation#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               matriculation#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               matriculation#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Matriculation#Matric 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MAXIMUS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MAY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 May#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MAY#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MAY#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MAY#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MAY#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MAY#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MAY#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ma�trise#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ma�trise#Master's Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MB.BS degree#M.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MB.BS.BAO.SI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MB.BS.BAO.SI#Bachelor of\\nScience#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Mba 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                12497 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA\t\t\t\t\t\t\t\t\\n\\n\tBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA\t\t\t       BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA\t\tMaster's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA\tMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA\tMasters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA \t      \tBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA \tBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA \tGrad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA \tMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA          Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA          Bachelor of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA          BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA          Masters#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA        Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA       Masters#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA    Master's#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA   \\nDegree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA   Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA  (Executive MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA  & MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA  DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA  Degree#Master's\\nDegree#Bachelor's Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA  Degree#MGT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA  Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA  Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA  Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA  MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA - Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA - Master of Business Administration#BS#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA - Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA - Matriculated - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA - MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA ? Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA . BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA '99 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA (AACSB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA (COMPLETED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA (HR) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA (International Business) & M. Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA (Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA (Master of Business Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA (Master of Business Administration)#B.S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA (Master of Business Administration)#BA (Bachelor of Arts) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA (Master of Business) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA (Master of International Business) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA (Master of Management) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA (Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA (Masters) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA (Masters#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA (Masters#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA (Masters#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA (ONGOING)#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA / BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA / JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA / M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA / Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA / Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA / MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA / MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA / MS) Master of Business Administration and Master of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA /Masters of Science Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA \\n\\nMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA \\nB.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA & B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA & BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA & Graduate degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA & M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA & MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA & Master of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA & Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA & Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA & Masters#Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA & MIM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA & MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA & MS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA accounting#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA and Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA and BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA and BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA and JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA and M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA and Master of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA and Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA and Masters of Human 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA and Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA and Masters#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA and MIS (Systems Security) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA and MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA and MS/BS#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA and MS/BS#M.B.A#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA and Ph. D#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA CANDIDATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA Combined Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   32 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   88 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA Degree#A. Degree#S. Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA Degree#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA Degree#B.S. Degree#A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA degree#B.SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA Degree#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA Degree#BA Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA degree#Bachelor of Commerce (B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA Degree#Bachelors of Computer Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA degree#BBA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA Degree#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA Degree#BS Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA Degree#BS\\nDegree#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA Degree#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA degree#MBA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA Degree#MBA Degree#Bachelor of Science Degree#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA Degree#MGT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA Dual Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA Executive Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA Graduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA Graduate#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA Graduate#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA Graduate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA Investment 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA IT (Master of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA Management#BS#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA Master of Accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA Master of Business Administration#MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA Masters of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA masters of Business Administration#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA Masters#B.S. Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA Masters#MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA MIS & E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA STUDENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA W#Bachelor of Arts#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA- Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA-Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA-IT#Advanced Diploma#Masters#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA-Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA, BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA, dual degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA, dual degree#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA, E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA, Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA, Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA, Masters#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA, Masters#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA, Masters#JD, Juris Doctor#BBA#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA, MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA, Professional MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA. \\nBCC, BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA. Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA., Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA....................... 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA.................................................. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA(Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA(PGDM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA) Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA) Master of Business Administration#BBA#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA) Master of Business Administration#BSBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA) Master of\\nBusiness Administration#BS) Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA) Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA) Masters of Business Administration#BS) Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA)Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA/ Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA/ JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA/ MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA/ Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA/ MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA/DBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA/JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA/Leadership Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA/M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA/MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA/Master of Technology Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA/Masters of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA/MPA, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA/MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA/MSTM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA/Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA/TM#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA\\n\tMasters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA\\nDegree#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA\\nDegree#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA\\nDegree#Master's degree#Bachelor s Degree#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA\\nDegree#Master's degree#Master's degree#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA\\nM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA\\nMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA\\nMasters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA\\nWill receive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA&M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA&M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#A.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#AAS#BS#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Advanced Diploma#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Advanced Project Management#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#Associate#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#AUAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#B Sc#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#B Sc#PA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#B. \\nS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#B. A#Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#B. SC. Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   40 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#B.A (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#B.A. \\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#B.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#B.A#Associate Arts Degree#VPS     (H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#B.A#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#B.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#B.A#Master's#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#B.A#Masters#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#B.B.A) Bachelor of Business Administration#D.B.A) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#B.B.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#B.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  112 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#B.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#B.S. and M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#B.S.'s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#B.S./B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#B.S#-          .A.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#B.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#B.S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#B.S#A.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#B.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#B.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#B.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#B.S#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#B.Sc. (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#B.Sc. (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#B.Sc#Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  212 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#BA Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#BA, MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#BA. PMP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#BA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#BA#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#BA#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#BA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#BA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#BA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#BA#Honors Diploma L'Academie de Cuisine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#BA#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#BA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#BA#USC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Bachelor   of   Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Bachelor Degree#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Bachelor Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Bachelor in Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#BACHELOR IN ECONOMICS (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#Bachelor of Accounting degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Bachelor of Accounting degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#Bachelor of Applied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Bachelor of Arts#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Bachelor of Arts#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Bachelor of Arts#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Bachelor Of Arts#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Bachelor of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Bachelor of Arts#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Bachelor of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#Bachelor of Business Administration (B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#Bachelor of Business Administration (BBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#Bachelor of Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Bachelor of Business and Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Bachelor of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#Bachelor of Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#Bachelor of Business\\nAdministration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Bachelor of Commerce#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#Bachelor of Communications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#Bachelor of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Bachelor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#Bachelor of Engineering (BE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#Bachelor of Engineering (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Bachelor of Engineering Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Bachelor of Engineering#Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Bachelor of Human Resource Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Bachelor of International Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Bachelor of Law degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#Bachelor of Law#Bachelor of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Bachelor of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Bachelor of Mechanical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Bachelor of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Bachelor of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Bachelor of Pharmacy#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   79 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Bachelor of Science Degree#Recipient of Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Bachelor of Science\\n(Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Bachelor of Science#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Bachelor of Science#Advanced Diploma/PGD#Advanced Diploma#Associate Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Bachelor of Science#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Bachelor of Science#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Bachelor of Science#BBA#Associate#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Bachelor of Science#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#Bachelor of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#Bachelor of Science#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#Bachelor of Science#High School Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Bachelor of Science#MA#Masters Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Bachelor of Science#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Bachelor of Science#PROFESSIONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Bachelor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Bachelor of Technology (B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#Bachelor of\\nArts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#BACHELOR OF\\nSCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Bachelor, of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#Bachelor's Degree (BA,BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Bachelor's degree#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Bachelor's Degree#Bachelor's Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Bachelor\\nof Engineering (BE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Bachelor#ISCAE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#Bachelor`s of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#Bachelors of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Bachelors of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Bachelors\\nof\\nArt 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#BAU#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#BAU#Bachelor Degree\\nMaster of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   46 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#BBA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#BBA/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#BBA#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#BBA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#BBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#BBA#MBA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#BCC, BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#BE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  285 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#BS, (M) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#BS/BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#BS#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#BS#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#BS#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#BS#AAS#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#BS#Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#BS#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#BS#AS#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#BS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#BS#Bachelor of Science (BS)#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#BS#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#BS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#BS#M. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#BS#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#BSB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#Bsc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#Bsc (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#BSc. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#BSC#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#BSC#MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#BSN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#CA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Chartered Accountant 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Coursera 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Degree#Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Diploma Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Diploma#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Diploma#Master of International Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#Doctor of Philosophy (PhD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#Doctorate of Philosophy#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Dr. B. A#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#EMPLOYMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Executive MBA\\nBS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#Finance BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#French Language Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#GRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Graduate Certificate#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#graduate certificate#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Graduate Degree#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#Graduate Diploma of Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#Graduate#BA#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#Graduate#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Graduate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Graduate#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Graduate#MS#ECE and BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#HCM, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#HI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Higher Secondary 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Hospitality\t\tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#Hospitality          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#IITM#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#INSTITUTE#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#International Baccalaureate Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#International Diploma#M. Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#IT#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Laude Graduate#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#LL. B (Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#M.Ed#MA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#M.Eng#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#M.S. Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#M.S#B.A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#M.S#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#M.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#M.Tech#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#M&A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#M&A\\nBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#M&A#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#M&O 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#M#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#MA#AA#Diploma#Postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#MA#B SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#MA#BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#MA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#MA#Ph.D#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Magistra iuris (Master of Law) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Marymount\t         MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#MASTER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Master Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Master Degree of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Master Degree#B.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Master Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#Master of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Master of  Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Master of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Master of Applied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Master of business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  134 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Master Of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#MASTER OF BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Master of Business Administration (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Master of Business Administration (M.B.A#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Master of Business Administration (MBA)#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Master of Business Administration (MBA)#Graduate#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Master of Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Master of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#Master of Business Administration graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Master of Business Administration\\nMS#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Master of Business Administration#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Master of Business Administration#BA#Bachelor Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#Master of Business Administration#BE#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Master of Business Administration#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Master of Business Administration#BS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Master of Business Administration#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#Master of Business Administration#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#Master of Business Administration#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#Master of Business Administration#MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#Master of Business Administration#MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Master of Business and Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#Master of Business Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#Master of Business\\nAdministration#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Master of Business\\nAdministration#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#Master of Businesses Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Master of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#Master of Commerce#Law Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Master of Computer Science#Recipient of Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#Master of Computer Science#Recipient of Graduate#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Master of Cybersecurity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Master of Health\\n  Care Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#Master of Hostility & Tourism 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Master of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Master of International Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Master of International Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Master of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#MASTER OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Master of Science (M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBa#MASTER of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#Master of Science Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Master of Science#MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#Master of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Master?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Master's Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Master's Certifacate#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Master's certification#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Master's Degree#Bachelor's Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Master's Degree#Enterprises (ICPE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Master's degree#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Master's Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#Master's of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Master's of International Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Master's of Science Degree#Bachelor's of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#Master's#MBM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Master#B.Sc. Of Chemistry  faculty of science Tanta#NASP diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Master#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#Master#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#Master#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Master#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#Master#Master#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   46 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Masters Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Masters Business Administration#Ph.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Masters Business\\nAdministration BS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Masters Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Masters degree#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Masters Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Masters of \\nScience#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#Masters of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   77 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Masters of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Masters of Business Administration and Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#Masters of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Masters of Business Administration#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Masters of Business Administration#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Masters of Business Administration#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Masters of Business Administration#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Masters of Business Administration#BBA#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Masters of Business Administration#BSc#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Masters of Business Administration#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Masters of Business Administration#Masters of Business studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#Masters of Business Administrations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Masters of Business\\nAdministration#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#Masters of Business\\nAdministration#BS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Masters of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Masters of Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Masters of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Masters of Science#and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Masters of Science#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#Masters of Science#BA#Bachelor of the Arts#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Masters of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Masters of\\nBusiness Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Masters)???????????????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#Masters#Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#Masters#Associate of Arts#Associate#Associate of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#Masters#B. Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Masters#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Masters#Bachelor of Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#Masters#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#Masters#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Masters#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Masters#Bachelors of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#Masters#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Masters#JD#Juris Doctor#BBA#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#Masters#MA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Masters#Masters#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#matriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  117 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#MBA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#MBA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#MBA HR#Bachelors#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#MBA-PSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#MBA/MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#MBA#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#MBA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#MBA#Bachelor s Degree#Bachelor s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#MBA#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#MBA#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#MBA#IATA Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#MBA#MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#MBA#MS#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#MBA#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#MCSE, MCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#MD, Degree#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#MD#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBA#MEng#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#MIM) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#MIM#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#MPIB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   62 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#MS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#MS IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#MS Masters#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#MS#B.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#MS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#MS#BA#Secretarial Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#MS#Bachelor of Arts#Bachelor\\nof Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#MS#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#MS#Bachelor Of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#MS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#MS#BE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#MS#BS#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#MS#Graduate Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#MS#Masters of\\nScience#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#MS#MS & BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#MS#MS#M.S. Univ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#MSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#MSIT#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#Online Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MBA#Operations Research BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#PG Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#Ph.D#M.S#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#PhD#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#PM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#PMP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Post 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Post   Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBA#Post Graduate Diploma#Bachelor of\\nEngineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBA#Post Graduation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#Post- Graduate Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Post-Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Post-Graduate Studies Diploma\\n(D.E.S.S)#Masters of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 MBA#Post-Graduate Studies\\nDiploma (D.E.S.S)#Masters of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#Post-Graduate\\nStudies Diploma (D.E.S.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     MBA#Postgraduate Certificate#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#Postgraduate Diploma#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#Process of seeking#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBA#Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MBA#Recipient of Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBA#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MBA#S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#School of Business \\n\t\t\tMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#School of Business Administration#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MBA#SCSVMV#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#TBD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#TM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBA#to Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBA#UCLA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MBA#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MBA#VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MBA#VP of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBAINFINANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MBBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MBBS (Medical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MBBS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBBS. Bachelor of Medicine and Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MBBS#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MBBS#Bachelor of Medicine and& Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBCS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MBE Masters of Bioethics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MBM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MBS (Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Mc. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MC#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MCA (Master of Computer Application) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MCA (Master of Computer Applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MCA (Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MCA (Masters of Computer Application) M.S equivalent 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MCA Master of Computer Applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MCA(Master of Computer Applications) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MCA(Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MCA#B.S.E\tFIRST#B.A(BDP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MCA#BCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MCA#BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MCA#GNIIT#B.Com (H) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MCA#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MCA#MS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MCAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MCC\\nDegree#Master's of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MCC#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MCC#A#A+CERTIFICATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MCCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MCDBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MCDBA#Associate#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            McDonough School of Business Graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MCL (Master of Comparative Law) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MCOM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MCP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MCP#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MCP#Associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MCP#Bachelors#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MCP#MCITP#MCSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MCPS, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MCPS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MCRD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MCRP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MCS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MCS#BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MCS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MCSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MCSA Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MCSD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MCSD#M.Sc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 McSe 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  154 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MCSE (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MCSE Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MCSE Certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MCSE Course#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MCSE Courses#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MCSE Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MCSE MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MCSE Networking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MCSE Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MCSE Track 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MCSE) Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MCSE#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MCSE#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MCSE#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MCSE#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MCSE#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MCSE#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MCSE#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MCSE#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MCSE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MCSE#Diploma of Enterprise Network 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MCSE#Diploma of Enterprise Network Professional 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MCSE#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MCSE#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MCSE#M.B.A#Diploma#B.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MCSE#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MCSE#Master Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MCSE#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MCSE#MBA degree#MBA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MCSE#MCDBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MCSE#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MCSE#MCSE#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MCSE#USAF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MCTI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  469 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MD\tB.Sc (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD\tDoctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MD          Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MD          Degree#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD          Graduate#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MD     BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MD - Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MD (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MD (Doctor of Medicine) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MD (Medical Doctor) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MD \\n\\n\\n\\nDegree#Master's#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MD \\nDiploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MD & BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MD Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD Bachelor's\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MD degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MD Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MD Degree#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MD Degree#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MD Degree#Bachelors of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MD Degree#Certificate of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MD Degree#MBA#Bsc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MD Degree#MD#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MD Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MD External Diploma#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MD High\\nSchool\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MD Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MD State diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MD State Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MD, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MD, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MD.  Graduation diploma (GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MD. (Ongoing Master degree)#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MD. B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MD. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MD. DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MD. M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MD.BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MD\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MD\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MD\\nMasters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MD#10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MD#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MD#A.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MD#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MD#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MD#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MD#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MD#Associate Degree of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MD#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MD#Associate of Applied Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MD#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MD#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MD#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MD#Associates Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MD#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           MD#Associates of Applied Science (AAS)#Associates of Applied Science (AAS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MD#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MD#Associates of Arts (AA)#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MD#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MD#Associates of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MD#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MD#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MD#Baccalaureate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MD#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MD#BACHELOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MD#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MD#BACHELOR OF ARTS (BFA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MD#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MD#Bachelor of Medicine and Surgery (MBBS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MD#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MD#Bachelor of Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD#Bachelor of Science#B.S.) \\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MD#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MD#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MD#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MD#Bachelors of Science#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MD#Bachelors of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MD#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MD#CurrentAssociate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MD#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MD#DIA#DIA#DIA#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MD#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MD#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD#DIPLOMA OF MINISTRY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MD#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MD#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MD#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MD#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MD#H.S Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MD#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MD#High School Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MD#High School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MD#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MD#LOCKSMITHING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MD#M.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MD#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MD#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MD#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MD#Master of Business Administration MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MD#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MD#Master's Degree\\nMS Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MD#Masters Business Admin (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MD#Masters of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MD#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MD#Masters of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MD#Masters of Science\\nMaster's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MD#Masters of Science#M.S#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       MD#Masters of Science#M.S#PhD#Masters of Science#M.S.A#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MD#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MD#MD#D. M#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MD#MD#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MD#MD#MD#11th#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MD#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MD#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MD#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MD#Ph.D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MD#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MDA (Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MDA#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MDAssociate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MDAssociate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MDB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MDBachelor of Science#Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MDBachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MDHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MDHS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MDIV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MDIV degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MDMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MDP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   27 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ME#BE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ME#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                ME#Masters of Engineering#BE#Bachelors of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ME#MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MEA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MEA#Master's Engineering Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MEAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MEAO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MEB#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Mechanic's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Mechanical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Mechanical Diploma Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Mechanical Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Mechanical Engineer Professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Mechanical Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Mechanical Engineering Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MechanicalEngineeringA . S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MEd 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MEd degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Med. Asst. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Med. Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Med. Doctoral Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MED. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MED#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Medan          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Media & Communications Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Media Communications Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Media Studies B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              medical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Medical Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Medical Administration Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MEDICAL ADMINISTRATIVE ASSISTANT CAREER DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Medical Administrative Assisting Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Medical Administrative Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Medical Assistance Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Medical Assistance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MEDICAL ASSISTANT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Medical Assistant (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Medical Assistant Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Medical assistant Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Medical Assistant Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MEDICAL ASSISTANT DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Medical Assistant Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Medical Assistants Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Medical Assisting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Medical assisting Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Medical Assisting Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Medical Biller & Coder Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Medical Billing & Coding Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Medical Billing & Coding Diploma#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Medical Billing & Coding Diploma#High School\t\t\t\t\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Medical Billing and Coding Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Medical Billing and Coding Associate in Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Medical Billing and Coding Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Medical Billing and coding diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Medical Billing and Coding Diploma#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Medical Billing and Coding, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Medical Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Medical Coding and Billing (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Medical Coding Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Medical Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Medical Degree (MBCHB) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Medical Degree (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Medical Degree#M.B., B.CH#Bachelor of Medicine and Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Medical Degree#M.B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Medical Degree#Masters Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Medical Degree#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Medical diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Medical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Medical Diploma (MB. Bch diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Medical Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Medical Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   34 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Medical Doctor (M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Medical Doctor (M.D)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Medical Doctor (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Medical Doctor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Medical Doctor Degree#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Medical Doctor Diploma (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Medical Doctor Facultad de Ciencias de la 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Medical Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Medical Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Medical Doctorate (M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Medical Doctorate (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Medical Doctorate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Medical Doctorate Degree, (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Medical Doctorate Degree#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Medical Doctorate M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Medical Laboratory Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Medical Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Medical Office Administration Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Medical Office Administration Diploma#CEO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Medical Office Administration Diploma#COE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Medical Office Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Medical Office of Administration#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Medical Office Professional (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Medical Phlebotomy Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Medical school (M.B.B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Medical Secretarial Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Medical Transcription Diploma#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MEDICATION ADMINISTRATION TRAINING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Medication Technician (CMT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                medicine\t \tDegree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Medicine Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Medicine Doctor Degree#M.D#Bachelors Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Medicine Doctor#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Medicine. Degree#High School Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Medicine#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Medico Cirujano (Medical Doctor) Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MedTech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Meeting of AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MEGA Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MEGT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Melbourne 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MEM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MEM\tMaster 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MEM#Master of Resource 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MEMBER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Member of Business and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Member of Freshman class - Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Member of HOSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Member of Master of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Member of Men's Lacrosse team 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Member of NJHS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Member of RICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Member Services Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MEMBERSHIP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MEMBERSHIPS\tJuris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Memphis Doctor of Education#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MEN'S BASKETBALL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MEN'S LACROSSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MEng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MEng Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MEng Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Mental Health Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Merit Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Meritorious Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               MESP (Masters of Environmental Science and Policy)#Bachelor of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Mester of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Metairie La.\\n\\nDiploma \\n*Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               metric 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Metric 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MEX#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MEXICO'S VALLEY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Meyer D. Glantz, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MF. Master of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   75 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MFA (Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MFA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MFA#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MFA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MFA#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MFA#Master of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MFA#MS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MFC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MFC#Master#B. Com. (Bachelor of Commerce) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MFP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MFS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MGA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MGA (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MGA, Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Mgmt & Finance Diploma#Diploma#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MGR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MGS (Masters#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MGT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MHA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  102 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MHA - Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MHA (Master of Health Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MHA#Master of Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MHA#Master of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MHA#Master of Healthcare Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MHA#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MHL Degree#Masters of Hebrew Literature 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MHR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MHRD, Masters of Human Resource Development 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MHRDM (Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MHRM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MHRM / Master of Human Resource Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MHRM#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MHRM#MBA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MHS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MHS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MHS, Master of Human Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MHS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MHS#Master of Human Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MHSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MI Master of Science <BR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MI, Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MIBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Mich. B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Michael S. Pollack, D.D.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Michigan Merit Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Micro computer Specialist Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Microbiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Microcomputer Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Microcomputer Specialist Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MICROELECTRONICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Microsoft Application Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Middle School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MIE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Milan\tPost Diploma Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Milan (Italy). Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          MILANO (Degree#Master of Science#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Milano. Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Military Finance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Military Intelligence Certification Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Military Intelligence Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Military Police Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Military Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Milwaukee. MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MIM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MIM (Master of International Management) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MIM (Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MIM Master of International (Business) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MIM#M.Sc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MIM#Master of Information Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MIM#Master of International Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MIM#Master of International Management#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MIM#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MIM#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MIM#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Mindspring Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Mini MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MINISTER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ministerial Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ministry Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ministry of Health\\n*Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ministry Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MINOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Minor Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Minor Degree Diploma#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Minor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Minored#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Minoring 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Minors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Minors#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MINORS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MIPP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   40 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MIS (Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      MIS concentration   \\nDegree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MIS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MIS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MIS, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MIS, Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MIS, Master of Information System 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MIS) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MIS#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MIS#Master�s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MISM, Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MISM#IS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Missile Crewmember Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MIT (Master?s Degree)#MS (Master?s Degree) & Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 MIT\\nDegree#Master's degree#Master's degree#B.Sc\\nDegree#Bachelor of Science (B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MIT#Masters of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Mittlere Reife and International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Mixologist Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Mixologist Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Mixologist Diploma#Advanced Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Mixologist Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Mixology and Bar Operations Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Mixology Diploma#VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ml 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ml.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MLA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MLIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MLIS/MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MLIS#Master of Library and Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MLL (Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MLS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MLS & Ph.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MLS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MLS-Master#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MLS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MLS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MLSP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MLT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MM Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MM degree#BM degree#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MM#Master of Business International 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MMAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MMB#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MMM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MMSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MMT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MN#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MO MS#MO B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MO-Standard Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MO, A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MO#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Mobile (Wireless) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Modelador 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Modified Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Modified Standard Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MODIFIED STANDARD DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Modified Student Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       module. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Molo. B (PLAIN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MONMOUTH COLLEGE...B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Monroe Business Inst. (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Montreal (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Montreal Canada Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Montreal(Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MOODY'S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Mortgage & finance Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Mortuary Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Mortuary Science AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Mortuary Science B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MoS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MOS I 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Most Outstanding Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MOST#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Mouster's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  285 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MPA    Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MPA   Course#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MPA (Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MPA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MPA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MPA Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MPA Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MPA Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MPA-Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MPA, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MPA, Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MPA#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MPA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MPA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MPA#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MPA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MPA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MPA#GMU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MPA#M.A#M.S#B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MPA#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MPA#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MPA#Master's of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MPA#Master's of Public Administration#B.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MPA#Master#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MPA#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MPA#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MPA#Masters of Public 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MPA#Masters of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                MPA#Masters of Public Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MPA#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MPA#Masters#associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MPA#Masters#BA) Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MPA#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MPAP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   MPAS (Master of Physician Assistant Studies)#MHA#Master's#BS (Bachelor of Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  113 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MPH (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MPH (Master of Public Health) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           MPH (Master of Public Health)#Bachelor of Medicine and Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MPH (Masters of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MPH (Masters of Public Health) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MPH (Masters#Post-graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MPH Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MPH Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MPH Masters of Public Health & Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MPH, Masters of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MPH. Masters of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MPH#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MPH#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MPH#Master of Arts (M.A#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MPH#Master of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MPH#Master of Public Health and Tropical Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MPH#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MPH#Master's of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      MPH#Master's of Public Health Degree#Masters of\\nPublic Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MPH#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MPH#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MPharm Degree Master of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Mphil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MPhil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MPhil (Master's) of Development Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MPhil Degree#Dublin. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MPhil Physics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MPhil#BEd 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Mphil#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MPM    Masters of Project Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MPM [Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           MPM#Master of Business Administration#Bachelor of Arts#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MPM#Master of Program Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MPM#Master of Project Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MPM#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MPM#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MPM#Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MPP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MPP Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MPP, Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MPP#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MPP#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   65 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MPS\tAgriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MPS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MPS#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MPS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   MPS#Bachelors of Business Administration (BBA)#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MPS#Master of Professional Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MPS#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MPS#Masters#BA#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Mr. Green#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Mr. James S. Barlow, BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MRCPL#Masters of Regional and City Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MRE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MRP (Master of Regional Planning) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ms 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 8751 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MS\t\tEngineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS\tMasters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS     NYIT#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS - Administration of Justice  & Security 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS - E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS - GEOSCIENCE#MS - GEOSCIENCE#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS - Paralegal Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS ( Master of Science)#AMIE\\n(Graduate#B.Sc Honours#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS (C#BS (C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MS (GEOPHYSICS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS (IA)#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS (Management of IT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS (Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS (Master of Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MS (Masters Degree#BS#Doctor of Veterinary Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS (MSChE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS (SMP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS [Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS / BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS / MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS / Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS \\n\\n\\n\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS \\n\\n\\n\\nDegree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS \\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS & BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS & BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MS & BS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS & MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS + BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS Access 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS ACCESS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MS Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS and BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS and BS degrees#Bachelor and Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS and HS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS and MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MS Biological Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS Business and Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS causes 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MS COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MS CYBERSECURITY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   64 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  102 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS Degree          I.M. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS Degree C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MS Degree- Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS Degree, 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS Degree: 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS degree#Associate Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS Degree#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS Degree#BA Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS degree#BA degree#MD degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS degree#BA\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS Degree#BACHELOR Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MS degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MS Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MS Degree#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                      MS Degree#BS Degree#Bachelor's of Science#AS Degree (Honors): Science#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS Degree#BS Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS Degree#BS Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS Degree#BS#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MS Degree#IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS Degree#Master of Taxation#Bachelor of Accountancy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               MS Degree#MBA#MBA#Bachelor of Science Degree#Associates of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MS degree#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS Degree#MS Degree#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS Degree#PRC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS Doctor of Jurisprudence 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS EE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MS Engineering Ad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS GEOPHYSICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS HSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS in E.E#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MS IS  (Present) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MS IT (Present) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS Management and MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS Masters Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS of Aerospace Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS of Biochemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS of Biotechnology#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS of Computer Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MS of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MS of Health Care Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS of Laser & Optics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ms of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS Office 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS OFFICE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MS Oracle Corporation Masters#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS PM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS SQL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS SQL#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS TELECOMMUNICATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS TELECOMMUNICATION EXPECTED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS United StatesAssociate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS-ISM (Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS-Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS-MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS-MBA dual degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS-Windows NT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS, Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS, Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS, ED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS, Engineering          BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS, ES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MS, Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS, M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS, MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS, MANAGEMENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS, Management. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS, Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         MS, Masters of Management Information#MBA#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS, Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS, PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS.  - EECS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS.  Engineering#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS. \\nM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS. \\nMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MS. Biochemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ms. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS. degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS. Degree#BS. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ms. Hopkins#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ms. Panov#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS.c 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS) Master of Science#BA) Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS) Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MS) of Microbiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS/ Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS/BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS/BS of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS/Computer Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS/MA#BS/BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS/MBA#BBA#COM (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS/MEngg 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS/MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS/Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS/PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS\\nBS\\nDiploma\\nDiploma\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS\\nDegree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#AL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS#Analyst Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#Analyst Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#AS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MS#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS#Associate's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#B  .E.) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#B. Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS#B. V. Sc. & A.H#Bachelor of Veterinary Science & Animal Husbandry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#B.A#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MS#B.E.(Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#B.S.N. Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#B.S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#B.S#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   73 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#BA/BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#BA/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#BA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#BA#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#BA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#BA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#BA#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#Bachelor in Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MS#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#Bachelor of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#Bachelor of Arts (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MS#Bachelor of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#Bachelor of Business Administration (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#Bachelor Of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS#Bachelor of Law 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS#Bachelor of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#BACHELOR OF SCIENCE (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MS#Bachelor or Arts (B.A.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#Bachelor's  of Science#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MS#Bachelor's Degree - Administration of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#Bachelor's Degree#Master's Degree#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#Bachelor"s Degree B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                         MS#Bachelor\\nof Business Administration#Bachelor Degree#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MS#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MS#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MS#Bachelors Degree \\n\\nBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#Bachelors Degree BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#Bachelors of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#Bachelors of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#Bachelors of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MS#BBA Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#BE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#BE#www.ece.orst.edu 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  307 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MS#BS Degree#AA Degree#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#BS Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#BS E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#BS in Science,  (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS#BS of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MS#BS of Package Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#BS.MSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS#BS\\nand MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#BS\\nDegree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#BS#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS#BS#Addition 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#BS#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#BS#AS#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MS#BS#AS#MS degree#intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MS#BS#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#BS#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#BS#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS#BS#AUG#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#BS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#BS#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#BS#Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#BS#Bachelor of Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#BS#Bachelor's Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MS#BS#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#BS#BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#BS#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#BS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MS#BS#Diploma#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#BS#MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#BS#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MS#BS#MS graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MS#BS#P.G Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#BSEE#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#BSEET#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#CALCE#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MS#CERTIFICATES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#Chartered Accountant 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#CISSP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS#Commerce#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#CT.\\n          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MS#Cybersecurity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#DC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MS#Degree of Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS#Degree\\n \\n\\nAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MS#Degree#BS#HS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#Degree#Diploma#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#Diploma#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#Diploma#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  MS#Dual Degree#Bachelor of Business Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#Entomology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MS#Executive MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS#Graduate#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#Graduating with Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MS#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MS#Honor Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MS#Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#Inter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#IT Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS#M. Sc#B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MS#M.D#BA/BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#M.S#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#MA#BA#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS#MA#BA#MS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#MA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#MA#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#Master of  Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#Master of Applied Business Management#BA#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MS#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MS#Master of Building Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#Master of Business Admin 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS#Master of Computer Applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#Master of Engineering#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS#Master of Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS#Master of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#Master of Physics\\nBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS#MASTER OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS#Master of Science (MS)#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS#Master of Science and Bachelor of Science#MS/BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#Master of Science#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#Master of Science#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#Master of Science#BS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#Master of Science#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#Master of Science#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MS#Master of Structural Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MS#Master Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS#Master?s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#Master?s degree (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#Master's degree (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MS#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MS#Masters of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#Masters' Project.\\nBBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MS#Masters#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#Masters#Bachelor of \\nScience#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#matriculated#master degree#MS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   42 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS#MBA Duel Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#MBA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#MBA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#MBA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MS#MBA#BS#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#MBA#Graduate Midwife (MWN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MS#MBA#MBA#AB#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MS#MBA#MD#MS#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS#MBA#MD#MS#MBA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MS#MBA#MS#MBA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#MCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#MD#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#MIM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#MIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#MPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#MPA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   46 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MS#MS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS#MS.  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#MS., BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#MS/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#MS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#MS#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#MS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#MS#BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#MS#CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#MS#MA#Postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MS#MS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#MS#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MS#MS#MS#BS#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#MSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#MSSI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#OK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MS#OK#MS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MS#Online Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS#Ph.D. (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#Ph.D#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MS#Ph.D#MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#Ph.D#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#PHD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#PhD#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS#PhD#UMBC#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MS#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MS#Post Graduate#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#Post Graduate#Ecole Preparatoire (BS)#Licence (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MS#Post Graduate#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MS#Spring 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MS#UMUC#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MS#UMUC#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MS#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MS#USA#BS#Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MS#VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MS#Year Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   53 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MSA (Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MSA Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MSA Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSA Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MSA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSA#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSAT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MSB#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MSBA - graduated CUM LAUDE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MSBTE Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Msc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   36 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  429 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   58 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MSc\tMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MSc   and   MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MSc (Engg 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MSc (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSc (Master of Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MSc Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MSC Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MSC DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSC Degree#MSC Degree#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   MSC Degree#MSC Degree#Post Graduate#Bachelor's and Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MSc level Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSc Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MSc Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MSc. & MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MSc. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MSc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSc. Degree#BSc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MSc. Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MSc., Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MSc#10th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSc#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MSc#B.A.I.S. Bachelor of International Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MSc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MSc#BA of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Msc#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MSc#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSC#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSC#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSc#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSc#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSC#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSc#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSC#BSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MSc#BSc. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MSc#BSc#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MSc#CEMS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MSc#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MSc#Distinguished Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSc#FVM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MSc#grade 12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MSc#Maitrise 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MSc#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MSc#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSc#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MSc#Master of Science (MSc)#Bachelors of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MSc#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSc#Master's thesis 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSc#Master#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSC#Masters of Science and Chemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSc#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MSc#MIM#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSc#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MSc#MSc#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MSc#MSc#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MSc#Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSCIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSCIS#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSCIS#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSCM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSCS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MSCS (Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MSCS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSE#BSE#high school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSE#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSEAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   74 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSEE (Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MSEE & BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MSEE degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MSEE Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSEE#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MSEE#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MSEE#BSEE#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MSEE#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSFS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MSHCA/MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSHI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSHS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MSIA (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MSIA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSIC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSIE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MSIE#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSIM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSIR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSIS (Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MSIS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MSIS Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MSIS#Master of Science#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSIS#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSIST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MSIST#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MSIT&E Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MSIT#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSITS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSJ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSLIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MSLIS degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSLS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MSLS/MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MSM Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MSM Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MSM/Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MSM#Master of Science#Bachelors of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MSM#MSM#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSME degree#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             MSMIS#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MSN (Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MSN Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MSN Degree#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MSN Degree#BSN Degree#ADN Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MSN graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MSN Masters of Science#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MSN, Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MSN#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSN#Ed. Degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSN#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSOT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSPED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MSPM, Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MSPM#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSRE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MSS (Master of Social Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MSS & BSS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSSM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSSW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSTM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MSW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   66 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MSW (Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MSW Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MSW Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MSW/MASTER OF SOCIAL WORK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MSW#A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MSW#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MSW#Master Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MSW#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MSW#Master's of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MSW#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSW#Masters of Arts#Bachelors of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MSWE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MSWE (Master of Software Engineering) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   MT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MT (ASCP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MT Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MTA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MTA (Master of Tourism Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MTech (Master of technology) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MTM&H (Master of Tropical Medicine and Hygiene) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         MTM#Master of Telemanagement 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MTS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           MU Chapter 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MULTI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Multidisciplinary Studies degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Multidisciplinary studies towards International Business degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Multimedia Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Multiple Master Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Mumbai. B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MUP (Master of Urban Planning) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       MURP#Master of Urban and Regional Planning#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Mus 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Musculoskeletal Degree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Muse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Museum of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Music   Degree Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Music Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Music Education (Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MUSIC INDUSTRY (B.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MWCC#Associate's Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               MWSC#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              My Associates degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            My degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    My Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MYP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        M�xico, D.F#Bachelor�s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           n\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                n A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     n Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            n Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             n Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               n Service Tech Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                N.A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              N.A.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                N.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              N.A.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              N.A.S.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           N.A.S.D#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                N.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                N.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  N.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  N.D.D.Y.) (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        N.J. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               N.O. La.\\n          Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              N.O.V.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      N.O.V.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               N.S.A#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  N.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          N.W#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  N/A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            N/A, Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     n/A\\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            N/A\\nD.O 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 N/A\\nPursued degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 N3(national Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NA\\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NA#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               NAAMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               NABTEB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           NACCRA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NACI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       NAFTA Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NAFTA Graduate#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NAIROBI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Name and Location          Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Name and type of organization Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Name of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Name of Degree/Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Name of Diploma, Degree#Diploma, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Name of Diploma#B.Sc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Name of Diploma#Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Name of High School or 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Nape 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NAPE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NASA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NASP#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   National   Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 National Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             National Certificate#NQF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      National Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   72 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     NATIONAL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 National Diploma (Equivalent of US Associate Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                National Diploma (ND) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 National Diploma Building Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             National Diploma of Hydraulics and Civil Engineering#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    National Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   National Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   National Diploma#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      National Diploma#School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            National Extended Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            National External Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              National Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   National Technical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           National Technical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           National Technical#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                National Technical#National Technical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Nautical Science#Bachelors Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Naval Architecture Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 nB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  NBC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NC          .    A. Sc. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NC BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        NC#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NCAA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NCC International Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NCCER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  NCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NCERT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             NCI#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NCLEX 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NCTI Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ND - National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ND (Nat. Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ND) National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           NE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NEBOSH International Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NEC Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NECA Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        NEDP Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               netB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Network Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Network Administration Associates Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Network Administration Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Network Administrator Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Network and Wireless Technologies AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Network degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Network Engineer and Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Network Engineering and Management Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Network Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Network Security Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Network Security Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Network Systems & Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Network Systems & Administration Degree#Associate Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Network Systems Administration Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                              network systems administration of applied science associates degree#Bachelors Degree Of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Network Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Network Technology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Network\\nTechnology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Networking Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Networking Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Networking Technologies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Neuroscience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Neuroscience (BA) & Economics (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Neuroscience BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Neuroscience BA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         new Doctorate Degree#Doctor of Nursing Practice Degree (DNP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               New York State Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         New Zealand Business Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NEWCAJE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Newcastle. BA (Hons) Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NFPA#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           NFTE Entrepreneur Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  NFTE Entrepreneur Graduate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               NGO Management Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NGR. BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  NID 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NIGERIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Nigeria (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Nigeria BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Nigeria. B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Nigeria. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Nigeria#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NIGERIA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NIGERIA#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Nigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     NIH#Postdoctoral 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NIIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NIIT Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NIIT#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       NIIT#Post Graduate Diploma#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NIMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               NISTIR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NJ 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               NJROTC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  NM#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NMITC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NMTI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            no Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            No degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            No Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   88 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NO Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NO DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   No Degree Aqcuired 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NO DEGREE OBTAINED\tYEARS ATTENDED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    No Degree\\n*NVCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         No Degree#51 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 No Degree#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          No Degree#Associates Arts & Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NO DEGREE#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     no Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  No Degree#No Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           No Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            No-Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NOIDA          [Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NOLS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           non degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Non degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Non Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Non Degree Graduate#Doctor of Philosophy (Ph.D#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Non-degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Non-Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           NON-Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Non-Degree Masters of Science#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Non-Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Non-Degree#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 None 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   74 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NONE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          None Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        none, Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        None\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Non�Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NORC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Norfolk V.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Northern Virginia Community Degree#Associates Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Northwest Washington D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Northwood High school          Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Northwood Hs Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        NOT COMPLETED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NOTE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Notre Dame Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Nov 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  NOV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NOVA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   30 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           NOVA - A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       NOVA - A.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NOVA , A. A#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     NOVA) (NVCC)#No Degree#High School \\nDegree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NOVA#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NOVA#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               NOVA#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     NOVA#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NOVA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               NOVA#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           NOVA#BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NOVA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NOVA#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             NOVA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               NOVACC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NREMT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NROTC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NSA#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  NSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NSCS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NSF Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Nsukka. B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NT (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NT Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NT Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Nuclear Medicine Technologist Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Null Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NURSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Nurse Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Nurse Practitioner Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             NurseOne 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NURSING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Nursing (Associate) (ADN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Nursing (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Nursing (LPN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Nursing and Allied Heath 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Nursing and Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Nursing Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Nursing Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       NURSING DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Nursing Degree Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Nursing Degree#BSN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Nursing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Nursing Diploma#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Nursing#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NVCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NVCC A.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NVCC, A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             NVCC#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NVCC#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NVCC#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NVCC#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NVCC#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               NVCC#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             NVCC#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NVCC#B.Sc. (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             NVCC#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NVCC#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         NVCC#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             NVCC#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 NVFS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NWC Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NY Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   NYBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  NYBachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  NYC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               NYC#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       NYH.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NYHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  NYS Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        NYS Regents Technical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  NYU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       o       Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                o A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     o Degree/Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            o Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           o Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       o Graduate#Master of Public Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O Levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        o Masters#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O-level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O-Level Computer Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O-Level#A.A.S#Top Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O-levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O-Levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O.D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O.E.D#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O.N.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O.S.H.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O.S.S.D (Ontario Secondary School Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O' Levels (WAEC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O'LEVEL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O&M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           oAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   oAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 oB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Objective 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Obtain Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Obtain High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Obtained a Vocational Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Obtained Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Obtained Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Obtained diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Obtained Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    OBTAINED DIPLOMA#BUSINESS STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Obtained G.E.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Obtained High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      OBTAINED#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          OBTAINED#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Obtaining AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Obtaining Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Obtaining Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Obtaining B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Obtaining degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Obtaining Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Obtaining Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Obtaining Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Obtaining Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Obtaining Social Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Occupational Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Occupational Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Occupational Proficiency Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Occupational Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ocean Engineering Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OCP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OCR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   OF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         of America Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               of Applied Science#Bachelor of ArtsGPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             of Architecture#Post-professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       OF ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             OF ARTS#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               of Arts#School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  of Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               OF B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     of Bachelor of Science#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OF BUSINESS ADMINISTRATION#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       of Business Administration#Master of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     of Business Administration#MDBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           of Croatia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           of Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        of Expiration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    of Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             of Korea 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        OF MARYLAND Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              of Masters of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     of Science Degree#Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 of Science#Bachelor of \\n\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       OF SCIENCE#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                of Science#of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                OF#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 OF#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Office Administration Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        OFFICE ADMINISTRATION DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Office Computer Application Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         OFFICE COMPUTER APPLICATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Office Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   OH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 OH Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               OH Degree#MS#MI Degree#MS#ND Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OIC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ojo Nigeria. (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OJT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   OK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OKC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          OklahomaB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           OLNEY HIGH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          OMPM.BS#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ON LL.B#J.D./LL.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OND 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OND & HND 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              OND#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OND#Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     One year Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ongoing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ongoing Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Online 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Online Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Online Degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Online Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Online Degree#Master of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ONLINE DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Online Master`s Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Online, Degree#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Online#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 OOAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             OPAC#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Opaluwa O.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Operations Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Operations Research\t \tDegree#None 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Operations Research Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OPM Executive MBA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              OPM#OPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              OPT EAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Option of A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Option, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Options 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Oracle Database Administration Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Oracle Master#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Oracle Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Oracle Masters#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Oral defense of Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ordinary   Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ordinary Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ordinary level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ordinary Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ordinary Level Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ordinary Level#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ORDINARY LEVEL#MATRICULATION#ADVANCED LEVEL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ordinary Levels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ordinary national diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ordinary National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   21 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ordinary National Diploma (OND) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ordinary National Diploma (OND) Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ordinary National Diploma (OND) Business Administration(Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ordinary National Diploma (OND)#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ordinary National Diploma(OND) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ordinary National Diploma#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ordinary National Diploma#Associate Degree Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ordinary National Diploma#Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ordinary National Diploma#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ordinary Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ordnance School Diploma#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ordnance school diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
## Organizaci�n  y log�stica de reuniones de car�cter#Actualizaci�n contin�a de los sistemas de evaluaci�n establecidos por las diversas instancias de gobierno.\\n*Elaboraci�n de graficas y estad�sticas.\\n*Elaboraci�n de presentaciones en power point para direcci�n en junta de gobierno.\\n*Participaci�n de lineamientos en organizaci�n de archivos de IFAI.\\n*Encargada de Oficina de enlace IFAI.\\n*Elaboraci�n de reportes de asistencia de todas las gerencias para integraci�n de carpetas en consejos 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ORION#OCONUS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                OS&CI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 OSHA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         OSHA#Benefits Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OSNABRUCK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         OSP Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 OSUT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OTA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 OTAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Other 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Other Degree#Conferred Master's Degree M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Other Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Other Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   82 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Other Masters - DIVINITY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Other Masters - MSN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Other Masters#Master of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Other Masters#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Other Masters#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       OTHER#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 OTN Education A.S. Degree#A.A. and A.S#B.S.\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Outstanding Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Outstanding student\\n          Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Overview of Acquisition Ethics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Oxon Hill M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          P G Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 P. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 P. G 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        P. G. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             P. G. Diploma#equiv. MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            P. G#P. G 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 P. O 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      P.A. (Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          P.A. school#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          P.A.\\n*Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                P.A.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          P.A.G.E#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              P.A.L.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              P.A.W.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 P.A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          P.A#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              P.A#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      P.A#P.A#P.A#P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  P.A#P.A#P.A#P.A#P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               P.B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            P.B.S#M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  P.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                P.D.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          P.D#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  P.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          P.E Teacher 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  P.E.\\nPh.D.\\nM.Sc.\\nM.Sc.\\nB.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    P.E.D CERTIFACATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            P.E#MS,BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  P.G 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          P.G diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          P.G Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 P.G Diploma#B.S#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                P.G. Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         P.G. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  P.G. Diploma#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               P.G. Diploma#Master of Science#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   P.G. Diploma#PGDFM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              P.G.C.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          P.G.D Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          P.G.D. Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            P.G.D.C.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          P.G.Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      P.G.DIPLOMA#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          P.G#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                P.h.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                P.H.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  P.H.D.E.E. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   P.M. SINGLE FAMILY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  P.O 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             P.O. Box 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             P.O. BOX 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         P.O. Box#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            P.O. Box#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         P.O. Box#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           P.O. Box#Registered Nurse Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          P.O#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   P.O#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  P.R 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              P.R.E.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  P.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           P) and (S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      P>Diploma#Masters#Bachelor Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            P>Master of Business Administration#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PA Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PABachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PABachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PAD Diploma#BCT Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PADM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Paint Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Painting Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Painting/Electrical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pakistan Master? s (MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pakistan#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PALS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PAMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PANAMA. Postgraduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Paralegal Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Paralegal Associate of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Paralegal Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Paralegal Association Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Paralegal Certificate, earned 66 credits towards Legal Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                Paralegal Certificate, earned 69 credits towards Legal Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Paralegal Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PARALEGAL DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Paralegal Degree#Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Paralegal Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Paralegal Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Paralegal Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Paralegal Studies Degree#A.A.S.), ABA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Paramedic Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PARAPROFESSIONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parental Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PARK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Park          Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Park Bachelors Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Park Degree#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 Park Doctor of Philosophy#Master of Science#Republic of China Master of Science#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Park Graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   PARK, (GRADUATED#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PARK, Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Park. B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Park#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PARK#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ParkBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ParkBachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PARKDALE H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         part of Master of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Part time JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PART#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Partial Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Partial International Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Partial International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Participant of SGA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Participated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parttime Juris Doctor#Master of \\nInternational Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Pass Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PASSED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Passed Higher Secondary Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Passed Ph.D#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pastry Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PAT#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PATHEDUCATION BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Pathobiology Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Paths 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PATHS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Pathways Workforce Development (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Patiala B.TECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Patricia D. Murphy, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pavia 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      PBG FLA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   PC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                    PC C Charlotte, N C 10-12-2012 - until present Pre-nursing Skills Reading Comprehension Monitoring Time Management Active Listening Speaking C PR Certification First Aid training Clean driving record : Associate In Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PC Computer Support Specialist (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PC Repair Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PC Repairing Online Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PC Specialist Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PC Specialist Diploma#DC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PC Specialist Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PC Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PC#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PCAT#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PCDI#Associates Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PCDI#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PCHS#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PCI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PCMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PCS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   PD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PDI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PED.D\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Pedagogical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pending 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Pending AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Pending Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pending Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pending Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pending Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Pending degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Pending Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pending Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pending diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pending high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pending Liberal Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pending Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pending, Degree Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Penn Foster career diploma#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Pennfoster career school- Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PENNSYLVANIA Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PER#IBM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Performance Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Perito 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PERSONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Personal Computer Repair Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Personnel Administration (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PERU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Peru High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Peru Master Degree#MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Peru. A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Peru. B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Perused B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Perusing Associates Degree\\nHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Perusing BS degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Perusing Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Petroleum Technology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   PG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PG (DIP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PG Dip#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PG Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   35 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PG Diploma IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PG Diploma#Bachelor#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PG Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PG Diploma#Postgraduate Diploma#Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PG Post Graduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Pg.Dip. (Postgraduate Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PG#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PG#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PGA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PGCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PGCC)\\n(A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PGCC#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   PGCC#A.A.S. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PGCC#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PGD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PGDBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PGDBA (Post Graduation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PGDBA(MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PGDBM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PGDCAP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PGDCS(Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PGDFM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PGDIP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PGDMM#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PGDPM#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PGM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PGYIV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph . D#B . A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph D#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph-D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph,D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.  D. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph. C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  330 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PH. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph. D (Wavelets and Image Processing) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph. D candidate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph. D degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph. D Dept 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph. D of chemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph. D of Statistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph. D. & M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PH. D. CANDIDATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph. D. Dean of Graduate Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph. D. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph. D. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph. D.\\n\\nPh.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph. D#Academy of Sciences.\\nM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph. D#B. E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph. D#B. Sc#Post-doctoral 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph. D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph. D#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph. D#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph. D#Earned Doctorate (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph. D#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph. D#M. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph. D#M. A#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph. D#M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph. D#M. S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ph. D#M.\\nA#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph. D#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph. D#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ph. D#M.S#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph. D#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph. D#M.Sc#M.Sc#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph. D#MA#MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph. D#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph. D#Master of Arts#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph. D#Master of Human Services 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph. D#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph. D#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph. D#Master#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph. D#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph. D#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph. D#oM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph. D#Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph. D#Ph. D degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph. D#Ph.D. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PH. D#PUBLIC POLICY#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph. D#Rotterdam , Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph. PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ph.d 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.d 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 5757 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PH.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   87 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D  degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D - Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D (ABD)#Master's of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D (April 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D (Clinical Tropical Medicine) (Doctor of Philosophy#D.T.M & H (Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ph.D (Management) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D (Philosophy), (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D (Quantum Electronics) &  MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D & M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D Biological Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D candidate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D Candidate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PH.D candidate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D Candidate (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D coursework 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D Degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PH.D degree#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D Information Technologies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D of 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D of Comparative Histology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PH.D of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D student 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D Student 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D student, Doctor of Education (EdD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D Student. Department of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D thesis#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D, Bioinformatics and Statistics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D, Learning and Instruction 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D, M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D, Materials Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph.D, Medical Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D, MPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D, Neurobiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D, Philosophy#TX 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PH.D,Degree#PH.D,Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PH.D,Degree#PH.D,Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph.D. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D.\t\tMATERIALS SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D.  GIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D. (A.B.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D. (A.B.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D. (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D. (INTERDISCIPLINARY) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D. & M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D. ABD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D. and M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D. and M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PH.D. and M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D. and MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D. Biochemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D. Candidacy (Fr. Lit 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      PH.D. CANDIDATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph.D. CHEMISTRY#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D. Decision science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D. Degree of Computer Science#M.S. Degree#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D. Degree#M.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D. degree#M.S#B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D. Degree#MA Degree#BA Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D. degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D. Departmentt. of Health Policy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                       Ph.D. Doctoral. Economist. Agricultural Economist. Masters of Arts. \\nEconomics Master of Arts#Bachelor of Education#Ph.D#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D. Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D. E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D. ECE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D. ECONOMIC GEOGRAPHY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D. Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D. Ed#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D. Foundations of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D. graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D. Graduate#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PH.D. HYDROMETEOROLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PH.D. HYDROMETEOROLOGY#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D. Ian O. Williamson, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PH.D. LINGUISTICS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D. of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D. of Physiology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D. of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D. of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D. Of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D. Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PH.D. PHARMACEUTICAL SCIENCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D. School of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D. STUDENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PH.D. STUDENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ph.D. Student of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D. STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D. thesis experiments. Academics Degree Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D. Urban Planning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D. Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D., A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D., Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D., MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D., MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D., Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D.'s 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D.) Doctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D./ E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D./ABD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D./M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D.\\n \\n\\n\\n\\n\\n\\n\\n\\n\\n Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D.\\n\\n\\nSchool of Applied Science and Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D.\\n\\nPh.D#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D.\\nAssociate Professor and Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D.\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D.\\nM.S#Honors Diploma#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D.\\nPh.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D.& M.Sc Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D.#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D.Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D\\nDegree#Doctorate of Christian Counseling 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#20007 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#A.B.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#ABD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D#ABD.\\nMasters Applied Physics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#ABD#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D#Associate#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#B.A, M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#B.A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#B.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#B.A#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#B.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#B.L 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#B.S., A. Hines, B.S, B.L. Gabriel, Ph.D., A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#B.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#B.S#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D#Bachelor degree of Urban Planing#Bachelor of Civil Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph.D#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#Bachelor of Medicine & Bachelor of Surgery) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#Bachelor of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#CANADA.\\n*M.SC. E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#CIDE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#control. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D#D\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D#degree of Doctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#Department of International Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D#Department of International Health#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#Doctor of Addiction\\n\\n\\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#Doctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#Doctor of Philosophy#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#Doctor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D#Doctor of Science#Magister 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph.D#doctorate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ph.D#doctorate#Ph.D#MSc#master's#Diploma#master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#Ed.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#Enterprise IT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D#Env. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#equivalent Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#ESF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#Faculty of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#Fields of Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#Graduate (M.Sc)#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph.D#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D#Higher School Certificate#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D#Honors Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ph.D#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#J.B#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#J.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#Jason Doctor, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ph.D#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#Juris Doctor#Master's#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#LLM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#M. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PH.D#M. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D#M. A#M. S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#M. A#M.S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#M. Arch#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#M. Patel (Ph.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#M. S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ph.D#M. S#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#M. Townsend 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   55 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#M.A. and Ed.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#M.A., B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#M.A#A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#M.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.d#M.A#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D#M.A#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#M.A#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#M.A#M.A#Diploma#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#M.A#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#M.A#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph.D#M.A#Master's#MPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#M.A#Universite de Laval B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#M.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#M.B.A#M.B.A#B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#M.B.A#Master of Science#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#M.B.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#M.C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#M.D. Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D#M.D., Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#M.D., Ph.D#M.S#M.D., Ph.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#M.D#M.D#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#M.Ed 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ph.D#M.Ed. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#M.Ed#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#M.Ed#Ed.S#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D#M.G.). M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#M.G.A. Executive Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#M.P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#M.P.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#M.P.A#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#M.P#B.S. L..A.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#M.Ph 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D#M.Phil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#M.Phil (Master of philosophy)#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#M.Phil. & M.F 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D#M.Phil#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  110 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PH.D#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D#M.S. & B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#M.S. and Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D#M.S., R.Ph., Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#M.S.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D#M.S.E.E#B.S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#M.S#A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#M.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#M.S#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#M.S#B.E#B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   64 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#M.S#B.S#A.B.J 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph.D#M.S#B.S#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#M.S#B.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D#M.S#B.S#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#M.S#B.S#R.O.K 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#M.S#B.Sc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D#M.S#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D#M.S#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ph.D#M.S#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#M.S#GWU#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#M.S#M. S#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#M.S#M.S#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#M.S#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#M.S#M.S#S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#M.S#M.Sc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#M.S#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#M.S#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                  Ph.D#M.S#Ph.D#M.S#Ph.D#Ph.D#Planning of Engineering Experiments (Ph.D#M.S#Operations Research (Ph.D#M.S#Ph.D#M.S#Ph.D#Ph.D#Ph.D#Ph.D#Ph.D.) Design and Analysis of Experiments (Ph.D#Ph.D#Ph.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ph.D#M.Sc Nanjing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#M.Sc. (Biochemistry)#B.Sc. (Biochemistry) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D#M.Sc. Botany#B.Sc. Agriculture 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#M.Sc., M2R PIE#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D#M.Sc#B. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#M.Sc#B.A. and M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#M.Sc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D#M.Sc#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#M.Sc#M.A. and B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D#M.Sc#M.Sc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#M.Sc#Ph.D#M.Sc#B.Sc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph.D#M.Sc#Pre Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#MA & Professional Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#MA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#MA degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D#MA#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D#MA#BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#MA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#MA#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#MA#MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#MA#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#MA#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#Master Degree#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#Master of Arts (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D#Master of Arts#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D#Master of Arts#Masters of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#Master of Arts#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ph.D#Master of Business Administration (M.B.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#Master of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#Master of Engineering (M. Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph.D#Master of Engineering Master of Engineering#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D#Master of Environmental Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#Master of Forest Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#Master of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#Master of Philosophy#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D#Master of Philosophy#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#MASTER OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PH.D#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#Master of Science (M.S#Bachelor of General Studies#B.G.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D#Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#Master of Science degree#Bachelor of Science#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#Master of Science#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#Master of Science#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#Master of Science#Bachelor of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#Master of Science#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#Master of Science#Master of Science#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#Master of Science#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#Master of Security Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#Master of Social Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D#Master of\\nArts#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#Master of\\nScience#Master of\\nScience#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D#Master?s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#Master's Degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#Master's Degree#BS) Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ph.D#Master's#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D#Master#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D#Master#Master#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#Masters Degree#LA#Bachelor of Arts degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D#Masters Degree#MBA#B.S#5.  A.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#Masters of Arts#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#Masters of Landscape Architecture#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#Masters of Law (LL.M#Juris Doctor#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D#Masters of Science   Administration of, Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph.D#Masters#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#Masters#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#Masters#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#Master� s Degree#Bachelor� s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D#MBA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#MBA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D#MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PH.D#MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#MBA#MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#ME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ph.D#MS (Master of Science)#BS (Bachelor of Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#MS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D#MS#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#MS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#MS#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#MS#BS/MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#MS#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#MS#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph.D#MS#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PH.D#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D#MSc#Master#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#MSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#NIST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#NJMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#OH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#Patrick S. Callery, Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#Ph. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D#Ph. D. diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   63 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#PH.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ph.D#Ph.D. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ph.D#Ph.D. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ph.D#Ph.D. Ph.D#Ph.D. M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#Ph.D.'s degree#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#Ph.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#Ph.D#B.Sc. - ELECTRICAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D#Ph.D#Bachelors and Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#Ph.D#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph.D#Ph.D#M.S#M.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ph.D#Ph.D#M.S#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ph.D#Ph.D#M.Sc#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ph.D#Ph.D#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#Ph.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#Ph.D#Ph.D#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#Ph.D#Ph.D#Ph.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#Ph.D#Ph.D#Ph.D#Ph.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D#Ph.D#Psy.D#Ph.D.\\nM.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ph.D#Pharm.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PH.D#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ph.D#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ph.D#Post-Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ph.D#Post-Graduate#M.A#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ph.D#Present. ABD#M.A#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph.D#Psy. D#Ph. D#Masters Degree#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ph.D#S.B#S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ph.D#S#Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ph.D#U.S. Master of Arts Degree#Master of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ph.D#U.S. Ph.D. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ph.D#USMaster's Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ph.D#V.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pharm D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Pharm. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pharm. D. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pharm. D\\n\\n\\nOrganization ASHP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pharm.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PharM.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PHARM.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Pharm.D degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pharm.D./Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Pharm.D./Ph.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pharm.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Pharm.D#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Pharm.D#Pharm.D#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PHARMACY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pharmacy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pharmacy Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PHARMACY TECHNICIAN DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PharmD (Doctor of Pharmacy) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PharmD (Doctorate of Pharmacy) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PharmD Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Phd 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1855 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PHd 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PHD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   64 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD\tInformation Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PhD (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PhD (ABD)#Doctorate of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      PhD (ABD)#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PhD (ABD)#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      PhD (ABD)#MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PhD (Current) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PhD (Faculty of Medicine) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PhD & MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PhD & MS#B. Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PhD and MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PhD and Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   PhD and MS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PhD Biochemistry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PhD Biomedical science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PhD candidacy degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PhD candidate (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PhD Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PhD CS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PhD degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PhD Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PhD DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PhD degree#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PHD degree#Masters of Science (MSc) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD degree#PhD#MA#MA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PhD Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PhD Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PhD Economics and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PhD EE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PhD Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD I/O 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD Information Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Phd of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PhD Optics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PhD Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PhD Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PhD student\\nDegree#MS\\nDegree#BS\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                    PhD- Doctorate Degree#MBA#Master Degree#MBA#Master Degree#MBA#BSc#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PhD- Doctorate Degree#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PhD, Doctorate - 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PhD. (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PhD. ABD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PhD. Degree#Doctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PhD. Degree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 PhD. Degree#Masters Degree#Bachelors Degree#Associates of Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PhD. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PhD(ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PhD(Doctor of Science) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PhD/MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PhD\\nBSc Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD#A.A.S.R.\\n\\n\\nMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD#A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PhD#A.B.D#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD#ABD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PhD#Associate#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PhD#B. Eng (Hon) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PhD#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PhD#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PhD#Bachelor of  Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PhD#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PhD#Bachelor of Chemical Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PhD#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PhD#BS/MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PHD#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#Combined programs of MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#COMPUTER SCIENCE  MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PhD#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PhD#Doctor of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PhD#Doctor of Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PhD#Doctor of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PhD#Doctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PhD#Doctor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD#Doctor of Veterinary Medicine (DVM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PhD#Doctoral Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PhD#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PhD#Doctorate of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    PhD#Doctorate of Information#Doctorate of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PhD#EMSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PhD#Engineer's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PhD#Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PHD#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PhD#Graduate school fellowship 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            PhD#Grupo de Teleinformatica e Automa��o (GTA)#Grupo de Teleinformatica e Automa��o (GTA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PhD#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PhD#Instituto de Ciencias Biomedicas#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PhD#JD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PhD#M. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      PhD#M.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#M.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PHD#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   PhD#M.B.A#S.M#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PhD#M.E#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PhD#M.S. & B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      PhD#M.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PhD#M.S#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PhD#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PhD#M.Sc#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PhD#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PhD#MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PhD#MA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PhD#MA#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PhD#MA#MA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PhD#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PhD#Master degree#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PhD#Master of Art (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   PhD#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PhD#Master of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PhD#Master of Arts#Licenciada (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PHD#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#MASTER OF BUSINESS ADMINISTRATION (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   PhD#Master of Commerce and Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PhD#Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PhD#Master of Engineering M.Engi#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PhD#Master of International Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PhD#Master of Music#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PhD#Master of Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Phd#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PhD#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         PhD#Master of Science (MS)#Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PhD#Master of Science#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PhD#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PhD#Master of Science#Bachelor of Science#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PhD#Master of Science#Bachelor of Science#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PhD#Master of Science#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD#Master of Science#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PhD#Master of Science#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PhD#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PhD#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PhD#Master's Degree of Pediatrics#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PhD#Master's degree#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#Master's degree#High-school certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#Master's of Business Administration#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#Master's of Science#Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PhD#Master's#DAC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PhD#Master#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   PhD#Master#Bachelor of Science#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   PhD#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PHD#MASTERS OF BUSINESS ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PhD#matriculated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#MBA (Master of Business Administration) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#MBA#B.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PhD#MBA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      PhD#MBA#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PhD#MBA#MPA#B.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PhD#MBA#Professional Diploma#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PhD#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PhD#MN. Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PhD#MPhil#Bachelors of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PhD#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PHD#MS AWARDED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PhD#MS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD#MS degree#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PhD#MS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#MS#Bachelor of Pharmacy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PhD#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PhD#MS#BS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PhD#MS#BS#BTEC#BTEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#MS#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PhD#MS#MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PhD#MS#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD#MSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       PhD#non-degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PhD#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PHD#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PHD#Ph.D#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PhD#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PhD#PhD. (Incomplete) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#PhD#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PhD#PhD#Master's#Master's#Master's#Master's#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#PhD#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            PhD#PhD#Ph.D#Master's#Master's#Master's#Master's#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PhD#PhD#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PhD#research. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PHI THETA KAPPA (PTK) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PHIL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Phil Degree#M.B.A. Degree#B.S. Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Philadelphia Masters Degree#MS#Bachelors Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Philadelphia. B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Philippines. Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      PHILIPPINES#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Philosophiae Doctor (Ph.D.) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Philosophy Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Philosophy Doctorate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Philosophy of Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Philosophy of Doctorate Degree (Ph.D#US Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Philosophy of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Phlebotomy Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Phlebotomy Technical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Phlebotomy Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PHOTO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PHOTOGRAPHY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Photography Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PHP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PHR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PHR certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PHR\\n         \tMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PHR\\nMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PHR#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PHR#Bachelors in B.Comm (HR) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PHR#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PHR#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PHR#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PHR#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PHR#SPHR#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PHS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Phycology AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Physical Education  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Physician ( Pediatrician and Surgeon) Doctor of Medicine (M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Physics\tPh. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Physics Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PHYSICS RESEARCH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PIM Master certified.  Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pisarzhevsky Laureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pitman London Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Place of Education\tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PLAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PLATTSBURGH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PLC#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Plumbing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Plumbing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PLUS 2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Plus Two 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PM Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PM Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PMBOK Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PMI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PMIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PMP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PMP (Profissional de gest�o de projeto) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PMP CERTIFICATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PMP Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PMP/CAPM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PMP#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PMP#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PMP#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   PMP#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PMP#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PMP#Masters Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               PMP#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PMP#Masters of Education (M. Ed) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PMP#MBA#Bachelor of Civil 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   PN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PN Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PNDS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Political Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      POLITICAL SCIENCE AND PHILOSPHY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Political Science B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Political Science B.A#Bachelor\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Political Science Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 POLS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Polytechnic di Milano Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  POLYTECHNIC DIPLOMA#B.Sc. Honours)\\n\\n 2) Higher National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               Polytechnic of Ibadan.          \\nDiploma#Diploma#Senior Secondary School Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Popolare Vita S.p.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Port of Spain 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  POSGRADUATE DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Possess High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 POST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post   Graduate   Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post   graduate   Diploma#B.   Tech. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Post - Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post - Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post - graduate Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post - Professional Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post -Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post Bac 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post Bacc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Post Baccalaureate and graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post Baccalaureate Credit 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Baccalaureate Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Baccalaureate Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Baccalaureate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post Baccalaureate Paralegal Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post Baccalaureate science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post Baccalaureate Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post baccalaureate Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post Baccalaureate Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post Baccalaureate#12th 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post Baccalaureate#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post Baccalaureate#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Post Bach#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post bachelor's Associates Science(AS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post Bachelor's Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Post Bachelorette#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post Bachelors Degree#Advanced Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post Basic Bachelor of Nursing (PBN) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post College Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post Degree#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post diploma#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post doctoral 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Doctoral 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Post Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post Doctorate Research Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post Doctorate Research Associate#Doctorate of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Post grad Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post Grad Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Post Grad Diploma#Bachelor of Engineering (B.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post Grad Diploma#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post Grad Work#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post Grad. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        post graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   22 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  296 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post GRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        POST GRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Graduate Advance Diploma#Master of Science (MSc)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post Graduate Applied Information Technology Diploma#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Post Graduate Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 POST GRADUATE COURSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post Graduate Courses 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post Graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post Graduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post Graduate Degree (DEA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post Graduate Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Post Graduate Degree#Bachelor's Degree (Laurea) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post Graduate degree#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post Graduate Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post graduate degree#MBA#T.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post Graduate Degree#MCA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                  Post Graduate Degree#Name of Education          Degree#Diploma          Title of degree#diploma and#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post graduate diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   23 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post Graduate diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  569 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                POST GRADUATE DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Graduate Diploma (D.E.A)- Ph.D courses 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Post Graduate Diploma (Masters) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Graduate Diploma (PGD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post Graduate Diploma Annual goals 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Graduate Diploma Management of Motivation and Creativity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Post Graduate Diploma of Public Health (PGDPH) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Post Graduate Diploma#A' Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post graduate diploma#B-Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post Graduate Diploma#B. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post Graduate Diploma#B.A. Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Post Graduate Diploma#B.A. Honors    (Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post Graduate Diploma#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post Graduate Diploma#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Post Graduate Diploma#B.Sc. Hons 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post Graduate Diploma#B.Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Post Graduate Diploma#BA (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Post Graduate Diploma#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                             Post Graduate Diploma#Bachelor Degree of Business Administration (B.B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post Graduate Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post Graduate Diploma#Bachelor of Business Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post Graduate Diploma#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post Graduate Diploma#Bachelor of Commerce (Honors) degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Graduate Diploma#Bachelor of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post graduate diploma#Bachelor of engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Graduate Diploma#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Graduate Diploma#Bachelor of Laws (LL.B) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post graduate diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post Graduate Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post Graduate Diploma#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post Graduate Diploma#Bachelor of Veterinary Medicine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post Graduate Diploma#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post Graduate Diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post graduate Diploma#Bachelor's of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Post Graduate Diploma#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post Graduate Diploma#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post Graduate Diploma#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post Graduate Diploma#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Graduate Diploma#Bachelors of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post Graduate Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post Graduate Diploma#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post Graduate Diploma#Business Studies#DMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post graduate Diploma#College of\\nBusiness Education CBE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Graduate Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post Graduate Diploma#Diploma Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post Graduate Diploma#Diploma#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Post Graduate Diploma#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post Graduate Diploma#Graduate#Bachelor of Arts (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post Graduate Diploma#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Graduate Diploma#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Graduate Diploma#M.M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post Graduate Diploma#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post Graduate Diploma#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post Graduate Diploma#Master of Commerce#Bachelor of Commerce (B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                             Post Graduate Diploma#Master of Computer Applications (M.C.A#Bachelor of Commerce (B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Post Graduate Diploma#Master of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Graduate Diploma#Master Of Science (M.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post Graduate Diploma#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post graduate Diploma#Masters Diploma#Academy of Computer learning 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post Graduate Diploma#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                   Post Graduate Diploma#Masters#Bachelors of Technology (B.Tech#Post Graduate Diploma of Proficiency 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post Graduate Diploma#Masters#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post Graduate Diploma#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Graduate Diploma#MBA#Post Graduate Diploma#Post Graduate Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Graduate Diploma#of Siva 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Graduate Diploma#P.G.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post Graduate Diploma#PGD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Graduate Diploma#PGDBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Post Graduate Diploma#PGDBA#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post Graduate Diploma#PGDBA#Bachelor of Science (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post Graduate Diploma#PGDBA#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Graduate Diploma#PGDBM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post Graduate Diploma#PGDE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post Graduate Diploma#PGDHHM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Graduate Diploma#PGDIM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post Graduate diploma#PGDITM#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Graduate Diploma#PGDMM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post Graduate Diploma#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Graduate Diploma#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post Graduate Diploma#Post Graduate Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post Graduate Diploma#Post Graduate Diploma#Bachelor#B.Com 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Post Graduate Diploma#S. D. School of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post Graduate Diploma#SCDL#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post Graduate Diploma#SCDL#Bachelor of Engineering#B.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post Graduate Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post Graduate Honours Diploma#Ph.D (Physics) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post Graduate Intelligence Diploma#Master Degree#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post Graduate Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post graduate Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post Graduate MBA#Post Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post Graduate MBA#Post Graduate Diploma#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post GRADUATE PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post Graduate Programming Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post Graduate Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post Graduate\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post Graduate\\nMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Post Graduate#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Post Graduate#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post Graduate#Bachelor of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post Graduate#Bachelor of Medicine/Bachelor of Surgery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post GRADUATE#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post Graduate#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                           Post Graduate#Bachelors of Science (BS)#Post Graduate Masters#Masters#Bachelors of Arts#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Graduate#Diploma Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post graduate#Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Post Graduate#Doctor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post Graduate#Doctor of Medicine#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Post Graduate#Doctor of Ministry 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post Graduate#Eq of MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Graduate#Executive MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post Graduate#J.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Graduate#Laurea Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post Graduate#M. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post Graduate#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Post Graduate#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Post Graduate#M.B.A#Masters#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post graduate#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post Graduate#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post Graduate#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post Graduate#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post graduate#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post Graduate#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post Graduate#Master of Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Post graduate#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Post Graduate#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Graduate#Master of Secondary Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post Graduate#Master of\\n          Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Post Graduate#Master of\\nArts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Graduate#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post graduate#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post Graduate#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Post Graduate#Masters  Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post Graduate#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Post Graduate#Masters of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post Graduate#Masters#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post Graduate#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Post Graduate#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post Graduate#P.G.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post graduate#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post Graduate#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post Graduate#Ph.D. (ABD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Graduate#Post Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Graduate#Program of Master of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Post Graduation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post Graduation (Masters) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post Graduation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   17 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post Graduation Diploma#D.O.E.'A' Level#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Post Master Classes 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post Master of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post Master's Degree#Ed. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post Master's Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post Master's Professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Post Master's Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post Master's work toward Doctor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Post Masters Eds 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post Masters Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post Masters Graduate#Masters of General Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post Masters Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post Masters#Master of Arts#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post Secondary Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post Undergraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post Undergraduate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Post- Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post- Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post-B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post-Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post-Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post-Baccalaureate degree of accounting 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post-Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post-Baccalaureate Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post-Baccalaureate Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post-Baccalaureate Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post-Baccalaureate#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Post-Baccalaureate#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post-Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post-Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post-BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post-BS#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post-BS#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Post-Degree Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post-diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Post-doc\\nPh. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post-Doctoral 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Post-Doctoral (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post-Doctoral Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Post-Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post-doctorate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post-Grad. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post-graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   31 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post-Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   52 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post-Graduate (M.Sc#Master   of Science (M.Sc#Graduate (B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post-Graduate (M.Sc#Master of Science (M.Sc#Graduate (B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post-Graduate (MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post-Graduate (Masters) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post-graduate certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post-graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post-Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post-graduate certificate program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post-Graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post-Graduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post-Graduate Degree#DEA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post-graduate diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post-graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post-Graduate diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post-Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   67 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                POST-GRADUATE DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post-graduate Diploma (PG.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post-graduate Diploma (PGD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post-Graduate Diploma Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post-Graduate Diploma#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post-Graduate Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post-Graduate Diploma#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post-Graduate Diploma#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post-graduate Diploma#Bachelor of Laws Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post-Graduate Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Post-Graduate Diploma#Bachelor's Degree#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post-Graduate Diploma#COMPUTER SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post-Graduate Diploma#Engineer s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post-graduate Diploma#Faculty of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Post-graduate Diploma#GIMPA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post-Graduate Diploma#LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post-Graduate Diploma#LL.M#FRANCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post-Graduate Diploma#M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post-graduate Diploma#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Post-graduate Diploma#Masters#postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post-Graduate Diploma#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post-Graduate Diploma#of Textiles (PGDMMT) (Masters) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                               Post-Graduate Diploma#of Textiles (PGDMMT) (Masters)#Bachelors of Science B.S. (Chemistry) (Bachelors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post-graduate Diploma#University Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post-graduate Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post-Graduate Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post-graduate Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post-graduate Masters of Systems Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post-Graduate Professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post-Graduate Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post-Graduate Studies Diploma (D.E.S.S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post-graduate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post-Graduate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Post-graduate#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post-graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post-Graduate#BFA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post-Graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Post-Graduate#Doctorate#MBA#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Post-graduate#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post-Graduate#M.B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Post-graduate#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Post-Graduate#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Post-Graduate#Master's Degree#M.B.A#Doctor of Philosophy ( Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Post-Graduate#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post-Graduate#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post-graduate#Post-graduate#Master of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Post-graduated Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post-Graduation degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post-Graduation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post-M.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Post-Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post-Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Post-Master diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Post-Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Post-Master's#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Post-Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Post-Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Post-Masters Nurse Practitioner Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Post-Masters#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Post-Masters#M.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post-MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post-Professional Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Post-Secondary Academic Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Post. M. Sc#M. Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Post.Doc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Post\\nGraduate Diploma#Masters#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                POST#GRADUATE DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Postbaccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Postdoctoral 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   38 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Postdoctoral Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Postdoctoral Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Postdoctoral M.S#Ed.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Postdoctoral Research Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Postdoctoral#associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Postdoctoral#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Postdoctoral#Associate#M.D., Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       postdoctoral#Higher Education#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     POSTDOCTORAL#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Postdoctoral#Ph.\\nD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Postdoctoral#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Postdoctoral#PhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Postgrad Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Postgrad. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   55 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         POSTGRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Postgraduate    Juris Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Postgraduate   Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                POSTGRADUATE  DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Postgraduate and Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Postgraduate certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Postgraduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             POSTGRADUATE CERTIFICATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Postgraduate Certificate#BSc Honours#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Postgraduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Postgraduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Postgraduate Degree (L. Specialistica) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Postgraduate diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  146 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 POSTGRADUATE DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Postgraduate Diploma (NCTJ)#Bachelor Of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Postgraduate Diploma (PgD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Postgraduate Diploma (PgDip) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Postgraduate Diploma European Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Postgraduate Diploma of Communication 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Postgraduate Diploma#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Postgraduate Diploma#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Postgraduate Diploma#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Postgraduate diploma#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Postgraduate Diploma#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Postgraduate Diploma#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PostGraduate Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Postgraduate Diploma#Bachelor of Commerce (B.Com) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Postgraduate Diploma#Bachelor of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Postgraduate Diploma#Bachelor Of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Postgraduate Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Postgraduate Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Postgraduate Diploma#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Postgraduate Diploma#Business Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Postgraduate Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Postgraduate Diploma#MBA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           postgraduate diploma#Post-graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Postgraduate Diploma#Postgraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Postgraduate Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Postgraduate Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Postgraduate Master Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Postgraduate Master#MA#BA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Postgraduate Masteral Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      POSTGRADUATE PROFESSIONAL DIPLOMA#EXECUTIVE MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Postgraduate school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Postgraduate studentship 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Postgraduate#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Postgraduate#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Postgraduate#Bachelors Degree#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Postgraduate#Doctor of Philosophy#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Postgraduate#Doctor of Philosophy#Ph.D#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       postgraduate#higher education#Higher Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Postgraduate#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Postgraduate#Master of Arts#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Postgraduate#Master of Divinity 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Postgraduate#Master of Laws 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Postgraduate#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Postgraduate#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Postgraduate#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Postgraduate#MAT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Postgraduate#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Postgraduate#MPH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Postgraduate#MS degree#BS \\n\\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Postgraduate#MSc#Masters#MSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Postgraduate#Ph.D#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Postgraduate#Postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Post�Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Potomac CollegeB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          POTOMAC HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PR/Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      PR#Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Practical Nurse (Diploma)#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Practical Nurse Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Practical Nursing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PRAXIS SERIES\tMasters of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Pre - University 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Pre Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pre- Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Pre-degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Pre-Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PRE-DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pre-Degree Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Pre-University 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pre-University Course-Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Pre-University Science#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Premaster#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Premio de Oro 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Preparatory and Associate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Preparatory and Vocational Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparatory Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Preparatory Diploma#Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Preparatory School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Pres.\tB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Presen BTS (Technical Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Present 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Present\t\t        Seeking Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Present Pursuing graduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Present Seeking Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Present.\tA.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Present.    A.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Present#Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Present#Post-Secondary Academic Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PresentAssociate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PRESENTATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           presentB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   PresentB.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PresentBachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Presently enrolled (Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          presentPh.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      PresentPh.D#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PRESIDENT'S AWARD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PRESIDENT'S CUP RECIPIENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PRESIDENT'S LIST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Presidential Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Presidential Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Primary Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      PRINCE GEORGE'S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Principle of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Principle of Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Principles of Applied Behavior 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Principles of Applied Behavior Analysis 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Principles of Banking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Principles of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Principles of Marketing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Prior Degree#BSEE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Private Investigation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Private Investigation. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Pro 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Process of Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ProductionA.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     PRODUCTIVITY POINT INTERNATIONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Profesional Mixologist Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Professional 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PROFESSIONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PROFESSIONAL\t\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Professional\tPhD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Professional  \tDiploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Professional  Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Professional / Chartered 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Professional Communications Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Professional Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   25 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PROFESSIONAL DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Professional Degree of Law (Juris Doctor (JD)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Professional Degree#Bachelor of Architecture#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Professional Degree#Bachelors of Science#Technical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Professional Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Professional Degree#M.S#CHINA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Professional Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Professional Designation Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Professional diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   67 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PROFESSIONAL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Professional Diploma Teaching and Administration of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Professional Diploma#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Professional Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Professional Diploma#Bachelor of Arts (B.A) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Professional Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Professional Diploma#Bachelor of Science (Honors) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Professional Diploma#CIPM#Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Professional Diploma#Diploma#Associate of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Professional Diploma#Graduate International Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Professional Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Professional Diploma#Post-Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Professional Diploma#Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Professional Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Professional Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Professional Graduate Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Professional Master of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PROFESSIONAL MASTER'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Professional Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Professional Masters Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Professional Masters of Emergency Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Professional Masters of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Professional MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Professional MBA#Bachelors of  Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Professional MBA#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Professional MBA#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Professional Mixologist Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Professional Science Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Professional Science Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Professional Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Professional Welder Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PROFESSIONALACHIEVEMENTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Professionals Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Professor of Atmospheric Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Professor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PROFILE#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PROFILE#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Program Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Program Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Program of Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Programa de Especializacion 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Programmer Analyst Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PROGRAMMER ANALYST DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Programmer Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Programming and Data Processing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Programming Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Programming Degree#REFERENCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Programming Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Programming Diploma#Distinction Graduate#M.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Programming Science (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Project Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Project Management Diploma  (RITI)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Project Management Diploma (RITI)#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Projected 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Projected Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Projected Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Property Management Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Prospective degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Prospective Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Prospective Graduate#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Prospective Graduate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      PROSPECTIVE MASTER?S OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Protocol Ceremonial Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PROVIDENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PRTM#Bachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PSY D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Psy. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Psy. D (Incomplete) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Psy.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   26 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PSY.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Psy.D Degree - Professional Psychology Doctoral Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Psy.D#Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Psy.D#Doctorate#P.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Psy.D#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Psy.D#Master of Arts#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Psy.D#Psy.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PSYCHIATRIC PREADMISSION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Psychiatry degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Psychology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PSYCHOLOGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                psychology\t \tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Psychology - Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Psychology Associates Degree Grad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Psychology B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Psychology BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Psychology Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Psychology BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Psychology BS#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Psychology BSc Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Psychology degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Psychology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Psychology Degree, BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Psychology degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Psychology Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Psychology of Human Behavior 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Psychology of Personality 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Psychology, BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PSYCHOLOGY, BA (DEAN'S LIST) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PSYCHOLOGY#TOWARDS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      PsyD, Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   PT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PTA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PTA Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PTCB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PTECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ptychion 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Public Administration  Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PUBLIC ADMINISTRATION B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Public Administration Degree#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Public Administration Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Public Health Degree#Associate College Degree#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PUBLICATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Publications Design Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Publicity Specialist Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Publishing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PUC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Purdue UniversityPh.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Pure and Applied Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pure Mathematics Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pursed Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pursing Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pursing Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pursing B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pursing bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pursing Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Pursing BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           PURSING BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pursing Business Admin Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       pursing Business Administration degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Pursing degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Pursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pursing Doctor of Philosophy (PhD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Pursing Doctorate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pursing Doctorate of Public Health 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pursing Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pursing Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Pursing Masters#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pursing MBA Degree#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Pursuant Masters of Construction Management#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pursuant of B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Pursuant of Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pursuant of Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pursue of Masters \\nCardozo HS\t\t\t\t\t\t\t\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Pursued Applied IT Networking Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Pursuing  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PURSUING (AAS) DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PURSUING (AS DEGREE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   PURSUING A BACHELOR OF ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Pursuing a Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 PURSUING A.A. DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pursuing Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Pursuing Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PURSUING BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PURSUING BACHELOR'S DEGREE (ACCOUNTING) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pursuing bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pursuing Business Administration degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         pursuing Business Administration degree (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Pursuing Business Administration Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Pursuing Business degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pursuing degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pursuing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      PURSUING DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Pursuing Degree\\nMaster's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Pursuing Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pursuing Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Pursuing International Baccalaureate (IB) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Pursuing Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pursuing Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             PURSUING MASTER'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pursuing masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pursuing Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pursuing undergraduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pursuing Visual Communications Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PursuingM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pursuit BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pursuit of  B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 pursuit of 's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               pursuit of A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pursuit of AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Pursuit of Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         pursuit of Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Pursuit of Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Pursuit of Associates Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Pursuit of Associates of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Pursuit of B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Pursuit of B.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Pursuit of B.S#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pursuit of BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pursuit of Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Pursuit of Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pursuit of Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Pursuit of Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pursuit of Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Pursuit of bachelors degree#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pursuit of Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pursuit of Business BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    pursuit of degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Pursuit of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pursuit of Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           pursuit of Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pursuit of Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            q Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              q Diploma#CMC#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Q. B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 qB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   QC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Quailifcations and Contributions\tHS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Qualification\tMaster's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Qualification / Degree Bachelors' of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Qualification / Degree Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      QUALIFICATION Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     QualificationHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Qualifications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          QUALIFICATIONS\tDegree#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Qualifications\tMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      QUALIFICATIONS\\n \\n*B.Ed CITE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                QUALIFICATIONS#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               QUALIFICATIONS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Queens, NYAssociate of Science Degree#Associate of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          R. D. Congo 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  R.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                R.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               R.B.A#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          R.D#Post\\nGraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             R.E.T.S.          Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    R.E.T.S.\\nApplied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  R.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                R.M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  R.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 R.N Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         R.N. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 R.N. Nursing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          R.N., A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             R.N#ACRP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          R.N#B.A#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    R.O.T.C. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  R.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       R.S.A. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  R)S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Race 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Radio Announcing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Radio Announcing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Radiology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Radiology Technology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             RANDSTAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ranked#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RAVINAGAR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Rawalpindi, Pakistan (www.fjwu.edu.pk)#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  RBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                RDBMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Reading 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Realschulabschluss#intermediate high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       REALTOR Association of America 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Rec'd Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Rec'd GED#Rec'd Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Receive degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Receive High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Receive High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             RECEIVED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Received (Diploma-GED) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Received Advance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Received associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                RECEIVED ASSOCIATES OF SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Received Bachalor of Science (B.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Received BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Received Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Received Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Received Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Received diploma ITAT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Received Doctor of Philosophy (Ph.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         RECEIVED HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Recent Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Recent Graduate#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Recent Graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Recent Graduate#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Recieved GED Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Recipient   of   Honors   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Recipient of B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 RECIPIENT OF BACHELOR OF ARTS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Recipient of Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Recipient of Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Recipient of Best 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Recipient of FLAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Recipient of Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Recipient of Graduate#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Recipient of Honors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         Recipient of International Baccalaureate Diploma and Advance Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Recipient of Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Recipient of M.D. Degree#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Recipient of Master's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Recipient, Juris Doctorate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     recipient) Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Recording Arts B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Recruiting & Retention Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           REDENTIALS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          REFFERENCES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Regent Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Regent's Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Regent's Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Regents Academic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Regents BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Regents Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Regents Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Regents diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   75 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Regents Diploma#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Regents endorsed High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Regents High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Regents Honors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Regents Level Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Regents Online Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Regents' Business Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Regents' Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Regents' diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Regents' Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Regents/Math Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Regional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Regions Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Registered  Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Registered in MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Registered Midwife(Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     registered nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Registered nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   47 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     REGISTERED NURSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Registered Nurse Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Registered Nurse Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Registered Nurse Bachelor&rsquo;s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Registered Nurse Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Registered Nurse Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Registered Nurse license#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Registered Nurse Program 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Registered Nurse Program#Associate of Science Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Registered Nurse Program#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Registered Nurse Program#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Registered Nurse Program#Master Degree of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                  Registered Nurse Program#Master Degree of Science#Registered Nurse Program#Bachelors of Science#Associate of Science Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Registered Nurse(Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Registered Nurse#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Registered Nurse#AAS RN#Registered Nurse 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Registered Nurse#ADN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Registered Nurse#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Registered Nurse#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Registered Nurse#Associate Diploma#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                        Registered Nurse#Associate of Science#Bachelor of science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Registered Nurse#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Registered Nurse#Bachelor of Nursing degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Registered Nurse#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Registered Nurse#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Registered Nurse#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Registered Nurse#Degree#Medical\t \tDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Registered Nurse#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Registered Nurse#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Registered Nurse#Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Registered Nursing (RN)    \\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Registered Nursing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RELATED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RELATIONS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Relevant Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Relevant Medical Degree (MD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Reliability centered Maintenance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                RENSSELAER#Master of Engineering/Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Representative Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Representative Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          Republic of Cameroon)          \\nPostgraduate Diploma#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Republic of Cameroon)\\nPostgraduate Diploma#B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Republic of Congo#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Required Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     required. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Research 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Research Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Residency 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Resident 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             RESIDENT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Resident Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          RESOLUTION#BACHELOR OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Restaurant Management Degree\\nCulinary Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         resumeresumeBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Retail Merchandising Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Retail Trade and Business Administration Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RETS#Associate Degree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Revit 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Revolution 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Reza B. Afshar 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Rh.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 RHIA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          RHIT degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  RI#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 RICA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             RICAFALL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             RICHMOND 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Rio de Janeiro 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  RIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 RLTC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  RMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   RN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        RN (Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  RN Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RN degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RN Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         RN Degree\\nAssociate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           RN Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                RN MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      RN with Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      RN-BSN graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RN, A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               RN#Associates Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    RN#Associates#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             RN#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RN#BSBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           RN#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                RN#Masters of Nursing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RN#Registered Nurse#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Robert M. Daniels 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ROBINSON SR. HIGH - GRADUATED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ROCKVILLE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Rockville High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Rockville MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ROCKVILLE#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Roll Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ROTC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ROTC Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ROTC#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  RPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  RSA#Bachelor of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 RSES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RSUST#Masters of Engineering Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  242 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            s BSS#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             S degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           s Degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  S Degree#B.A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         s degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                s Degree#Master&rsquo 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            S Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        S Diploma          EXPERIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            S Honours 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             s of Applied Science#Associate of\\nArts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         S. \\ndegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 S. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 S. B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         S. B. (M.I.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          S. B. (MIS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        S. degree#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               S. Degree#Bachelors and Master Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        S. MIS#S. CIS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         S.A.\\n*B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       S.A.\\n\\nB. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            S.A.A#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              S.A.D.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                S.A.E#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          S.A.F.E ACT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              S.A.I.D#Master�s degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                S.A.Y 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          S.A#MBA#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         S.B. and S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            S.B., Mathematics and S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            S.B., S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                S.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                S.B.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              S.B#S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             S.B#Sc.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        S.C (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  S.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           S.D.A#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               S.D#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              S.D#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              S.D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              S.D#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                S.E.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              S.E#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              S.E#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                S.G.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               S.G.K. Govt Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                S.I.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            S.I.M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  S.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  S.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              S.O.A.R 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              S.O.M.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      S.O.M.E#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                S.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           S.S.C\tG.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    S.S.C\tG.S.E.B#Bachelor' s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     S.S.C G.S.E.B#Bachelor' s Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              S.S.C.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       S.S.C#M.Sc.(I) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 S.S.C#Matric#A Level 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   S.S.C#Secondary School Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              S.S.L.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 S.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            S.T.A.R.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           S.T.M#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  S.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       S.W#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                S(C.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                S(CS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  S/W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  S#A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              S#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   S#Advanced Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            S#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 S#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                S#CPT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             S#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           S#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               S#M. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              S#M.S.E 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  S#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                S#S#S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            S5 Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SACS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SAE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SAIS) Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   SAIS) Master of International Public Policy (MIPP) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Sales Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             SalesForce.com#Master of Science#Higher National Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SALSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Sam .S#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        San, S. Korea 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SANS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sanz School Diploma#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SAT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SAT#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   SB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 sB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SC Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Sc. B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Sc. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Sc. M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             SC. Undergraduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Sc.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Sc.B. Physics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Sc.B#A.B. Engineering, and A.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Sc.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Sc.D#A.B.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sc.D#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Sc.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Sc#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ScB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SCDM#SCDM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SCHMUCK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SCHOOL\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     SCHOOL\tPh.D. degree#M.A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SCHOOL          Degree  M.#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            School          Degree#MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SCHOOL  OF  BUSINESS  ADMINISTRATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SCHOOL (O.S.S.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        School Degree#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                School Degree#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       SCHOOL Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               School Diploma#High School Diploma#M D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         SCHOOL DIPLOMAYEARS ATTENDED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SCHOOL DPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      School Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           School International Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                School Name\tDegree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       School Name          Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 School Name Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               School Name Degree#Master of\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     School of \\nEngineering and Applied Science M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       School of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  School of Arts (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          School of Arts and Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            School of Arts and Sciences#Bachelors of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   School of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          School of Business - Master of Business Administration#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    School of Business \\n\t\t  \tMBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  School of Business & Industry (SBI) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    School of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                         SCHOOL OF BUSINESS ADMINISTRATION \\n\\n\\nMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                              School of Business Administration\\n\tMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            School of Business and Administration, BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     School of Business and Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     School of Business and Economics          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          School of Business and Economics, A.C.S.S.B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       School of Business and Finance 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                School of Business and Industry (SBI) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           School of Business and Industry (SBI) Professional MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          School of Business and Industry Degree#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         School of Business and Public Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                    School of Business and Public Administration          \\nMasters of Business Administration (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       School of Business and Public Administration#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             School of Business and Public Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            School of Business and Public Management(SBPM) \\nMasters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       School of Business and Public Management#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             School of Business B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    School of Business Diploma#MBA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 School of Business Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            School of Business Master of Business Administration#Bachelor of Business 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               School of Business Master of Business\\nAdministration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           School of Business Master of Business\\nAdministration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                           School of Business Master of\\nBusiness Administration#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            School of Business Master of\\nBusiness of Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               School of Business Master\\nof Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         SCHOOL OF BUSINESS MASTERS OF BUSINESS ADMINISTRATION (M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           School of Business MBA#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                School of Business, Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           School of Business. (BSBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             School of Business\\n\tMaster of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   School of Business\\n          MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     School of Business\\nFinance BBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             School of Business#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             School of Business#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SCHOOL OF COMMUNICATIONS#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            School of Engineer & Applied Science\\nBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     School of Engineering \\nand Applied Science B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            School of Engineering and Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      School of Engineering and Applied Science \\nMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        School of Engineering and Applied Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     School of Health Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             SCHOOL OF LIBERAL ARTS \\nDEGREE#B.S. MASS COMMUNICATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              School of Liberal Arts and Sciences B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             School of Liberal Arts Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        School of ManagementBachelor of \\n\\nScience 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           School of Medicine Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                              School of Photographic Arts and Sciences#Bachelor of Fine Arts and Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     School of Professional Studies#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                School of Radiology          Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    School of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 School of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                               School of\\nBusiness M.B.A#J.D#Master of Earth and Planetary Sciences#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               School of\\nBusiness Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                        School of\\nBusiness Master of Business Administration Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                           School of\\nBusiness Master of Business Administration#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 School Qualification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       School, Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      school, diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     school. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      school's Master of Science (MS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SCHOOL(S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SCHOOLADDRESS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SCHOOLS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Schools of Business (AACSB)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Schools of Business and Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Schools of Business)\\nBS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Science and Technology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Science Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       SCIENCE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Science#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Science#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Science#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sciences Associate Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Sciences. \\n\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Sciences\\n*** **Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         SciencesBachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Scientific Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Scientific Baccalaureate (French high school diploma)\\nAPEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Scientific Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Scientific Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SCNAM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Scottish Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   SD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SDAEDUCATIONB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SDLC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SDM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Seal of Excellence Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Seattle 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SEBASTIAN 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Second B.S. Degree#B.S. degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        second degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Second degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Second Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Second Language Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Second Level Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Second Masters Degree (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SECONDARY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Secondary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Secondary Education Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Secondary Examination 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Secondary school certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Secondary School Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Secondary School Certificate (Matriculation)#Matriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Secondary School Certificate (S.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Secondary School certificate#Bachelor of Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Secondary School Certificate#Higher School Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Secondary School Certificate#S.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Secondary School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Secondary school diploma#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Secondary School Diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Secondary School Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Secondary School Diploma#ENI S.p.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Secondary School Leaving Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               SECRET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Secretarial 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Secretarial Business School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Secretarial Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Secretarial Degree of Proficiency 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  secretarial diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Secretarial diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Secretarial Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Secretarial Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Secretarial Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Secretarial Science Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Secretarial Sciences Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Secretarial Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SECRETARIES Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Secretary Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Secretary of Association of Computing Machinery 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                      Secretary of Labor Masters of Business Administration#A. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Section S (science) and OIB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Securities and Financial Regulation LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SECURITY CLEARANCE(S) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Seeking A Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Seeking Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Seeking associate's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Seeking Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Seeking B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Seeking B.S. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Seeking BA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Seeking bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Seeking Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Seeking Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Seeking BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Seeking Business Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Seeking Criminal Justice Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       seeking degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Seeking degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Seeking Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Seeking Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Seeking Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Seeking Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Seeking MS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Seeking MS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SEI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Select Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Selected graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Sem. Credits 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             SEMESTER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SENA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Senator of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Senior 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               SENIOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Senior Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Senior Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Senior Matric Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Senior School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Senior School Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Senior School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Senior Secondary Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              senior secondary school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Senior Secondary School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Senior Secondary School Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SENIOR SECONDARY SCHOOL CERTIFICATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Senior Secondary School Certificate (SSCE) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Senior#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Seoul S. Korea#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SEP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Sep#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SEPT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SEPTEMBER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SEPTEMBER#P.A.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SERC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               SERENA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               SERIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Server Programmer Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     SERVICE .\\n B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Service Tech Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Services Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             SERVSAFE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   SF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SGA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Sharptown E. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               SHAWCO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Sherwood High school. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   short of BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      short of degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SHORT#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Shorthand 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SHRM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SHS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SIFE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       SIGNT Exploitation Degree USAF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Simultaneous Translation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Sirti S.p.A#Sirti S.p.A#DOCTOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SIU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Six Month Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Six weeks Bendix A.B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SJ POLYTECHNIC\t YES    NO\tDIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               SKILLS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SkillsBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SKILLSOFT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SKY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SLC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SLIM) Post graduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SLP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   SM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SM\tMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Small 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Small Engine Repair Diploma#Electrician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           SMART#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Smartly - Business Degree Programs#Master of Business Administration#M.B.A#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SMC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SMME#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SN\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Social Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Social Epidemiology Sc.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Social Foundations of Education Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Social Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SOCIAL SCIENCE (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Social Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Social Sciences Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             social work\t \tDegree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Social Work (B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Society\t \tDegree#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Society Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Society of Human Resource Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Sociology A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Sociology A.S.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Sociology Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SOCLI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Software and Hardware Maintenance Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Software Applications Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Software Development (A.S. Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Software Development Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Software Engineering (B.Eng 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       SOFTWARE EXPOSURE\\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      solving. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Some 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SOME 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Sophomore 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Sophomore          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   SP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Spain 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Spanish 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Spanish Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Spanish Language Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SPC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Spec of Applied Computing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Special 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Special Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Special Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Special education Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Special graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Special Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Special Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           SPECIALIST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Specialist  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Specialist degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Specialist Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Specialist Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Specialist Degree#Ed.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Specialist Degree#First Level Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Specialist Degree#Master of Education Degree#Bachelor of\\nArts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Specialist Degree#Master's of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Specialist Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Specialist Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specialist's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Specialized Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Specialized Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Specialized Business Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Specialized degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Specialized Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specialized Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           SPECIALIZED HEALTH SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Specialized Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Specialized technical degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Specializing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Specialty 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Specialty Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     SPECIALTY DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Specialty Degree#Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Specific Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Specific Degree#Bachelor of Science#MCSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Speech and Linguistics B. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SPEECH#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SPHR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Spingarn SHS#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Spiritual Theology( Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Sports Industry Management#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               SPRING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Spring Graduate, A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SPRING#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SQL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SRA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SSBI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SSCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             SSCE#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 SSGT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SSSCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          St. Clare's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   St. Kitts. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              St. Paul Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Staff Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Stafford Virginia (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Standard 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Standard Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   14 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Standard Degree Grad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Standard Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     standard diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Standard diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Standard Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  210 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     STANDARD DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Standard Diploma Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                            Standard Diploma????????????????????????????????????????????????????????????????????????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Standard Diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Standard Diploma#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Standard Diploma#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Standard Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Standard Education Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Standard Graduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Standard high School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Standard High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         STANDARD High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         STANDARD HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Standard HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Standard Maryland High Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Standard Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Standards Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Stanford Advanced Project Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                STANFORDUNIVERSITY#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Start Masters#Master#Masters of Teaching 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Start of undergraduate degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        State Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            State of Maryland Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                State of Maryland High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             State of New York Regents Diploma#Diploma#degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        State of Virginia Emission Inspection Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        State Secondary Diploma (BAC) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Statement of Accomplishment 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             States Degree#Associated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    States Degree#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           Statistics, Degree#Master of science#Bachelor of Economics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      STATUS: Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      status. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 STAY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 STAY        Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  STB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 STEM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             STEM#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Stenographic and Business Diploma#BA#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Stephen M. Ross\\nSchool of Business Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Stewart, D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  STI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 STIK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 STKS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  STR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             STRATEGY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Strayer UniversityAssociates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    Strayer''''s Bachelor Degree and Diploma#Master of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                  Strayer''''s Bachelor Degree and Diploma#Master of Science Degree#of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        STRAYERUNIVERSITY#Bachelor of Science#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Stredn� Hotelov� skola\\n    Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Structural Engineering#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Student 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Student Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Student Ed.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Student of BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Student of Computational Informatics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Student of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Student of Sudy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Student,  A.S. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Student, A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Student(BS/MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Students 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Studied 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              STUDIED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         STUDIED B.SC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Studied Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Studied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Studies 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   64 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              STUDIES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Studies (Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               STUDIES (Ed D.) Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       STUDIES (SAMS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Studies Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Studies Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Studies of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Studies of International Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Studies towards MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Studies#Associates degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Studies#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Studies#M.M.K 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                       Studies#Masters of Public Administration#Bachelors of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Study 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         STUDY ABROAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      STUDY ADMINISTRATION OF JUSTICE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Study of civil#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Study of Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Studying 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Studying A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Studying Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Studying B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Studying Business Administration#B.A. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Studying Business Administration#High School diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Studying Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Studying Doctorate#MS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Studying for degree of BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Studying Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   SU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             SUBJECTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Successfully Obtained Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Suitland M.D 20747#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SUMMARY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         SUMMARY\tB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Summary M.B.A#M.B.A#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Summer Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Superior Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SUPERVISION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Supplementary Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Surgery Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surrattsville High school (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Sustainable 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                   su��a, maior fabricante de tintas de seguran�a do mundo e de tintas de \\n\\nimpress�o. \\nGerente de Sistemas#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   SW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               SWFECC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Swiss Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Swiss Higher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Swiss Hotel Association Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Symposium 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               System 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        System Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         T, Ph.D#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 T. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           T. A. M. M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            T. degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  T.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   T.A.G. (Talented and Gifted) & A.P 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                T.A.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        T.A.S#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          T.A#High School Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      T.A#TTC#T.A#T.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  T.B. tested#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                T.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             T.E.C. Graduate#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                T.E.S.S.T. Electronics School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        T.E.S.S.T#HIGH SCHOOL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  T.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        TACLANE Diploma#MD#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TAG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 TAIT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       TAKOMA PARK#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Tanzania ( High school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TAP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Targeted Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Tax LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Taxation LL.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 TB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     TBA#Masters of Social Work (MSW) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               TBCHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TBD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TBD Univ. of MS#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TBD#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TBD#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TCI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Teacher Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Teacher's Aide Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Teacher's Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TEACHER'S DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Teacher's Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Teachers Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Teachers' Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Teaching Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Teaching Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Tec de Monterrey, (ITESM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 TECH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             TECH.AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TECH#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Technical 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Technical and Accounting High school - Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Technical and Industrial Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Technical Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Technical Baccalaureate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Technical Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   45 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     TECHNICAL DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Technical Degree and A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Technical Degree#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Technical Degree#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Technical Degree#Dipolma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Technical diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Technical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   50 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TECHNICAL DIPLOMA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Technical Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Technical Diploma#Technical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               Technical Education Diploma (CTE)#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Technical Education Diploma (CTE)#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Technical Electronics Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Technical Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Technical Management degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Technical Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Technical Medical Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Technical Military Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Technical Prep Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Technical Professional Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Technical Professional Diploma#Higher Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Technical school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Technical School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Technical School Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Technical Support Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Technical Web Design Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Technical Web Design Diploma#B.F.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Technician 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Technician Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Technician of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Technician's Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Technician's Diploma#Associate Degree#Department of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Technics#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Techniques de Commercialisation \\n(Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Techniques Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Technological university diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Technologist degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Technologist Diploma#Associate's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TECHNOLOGY & NETWORKING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Technology and Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Technology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        TechnologyBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TechnologyBachelor of Science#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 TEFL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Tehnical Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Tehnicall Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TEKELEC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             TEM#HPTM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                tenth 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            tenth#GED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Term papers\\n\\n\\n\\n\\n\\nBA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Terminal Degree#Doctor of Health Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Terminal Degree#Doctor of Health Administration(DHA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Terminal Masters of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Terrain and Water Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Tertiary (SY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TESOL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       TESOL Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TESST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   18 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        TESST#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TESST#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 TEST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Texas A&M \\nMasters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             TEXTILE DESIGN (DIPLOMA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   TH 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Th.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Th.B (Bachelor of Theology) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Th.B. (Bachelor of Theology) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Th.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 TH.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           The Degree of Bachelor of International Economic Relations 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Degree of Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                 The degree of Doctor of Science#degree Doctor\\nof Science (Second Doctor)#Candidate of Science#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     The George Washington University expected degree#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Master of Education \\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The Professional Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Theatre (BA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Theatre Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Theatre BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Theodore E. D. Braun Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                               Theological School Diploma RBTC#Theological School Diploma TEE#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Theology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Theology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Theories of Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Theory of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Therapy Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Theses (Ph.D#M.S#B.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thesis of Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          THESIS#Bachelor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thezard, B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Third cycle State Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Third Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thirteen 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This postgraduate diploma#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Three Master's Degrees 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Three Masters#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Three-year Degree#Bachelor?s of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Three-Year Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 thru 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thru 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          THUNDERBIRD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 time)\t\tDegree#Doctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   time)  Degree#Doctor of Philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TIMEMANAGEMENTFORFRANTICPROFESSIONALS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Title of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Title of Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Title of qualification#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Title of qualification#Master's Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              Title of qualification#Master's Degree#Bachelor+ Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Title of the Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Title of the Degree#Bachelor of Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Titulo Profesional de Abogado (Juris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           TJ Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       TJHSST diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      TJHSST) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       TJHSST#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TM Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   TM#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TN#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   TNIMA) Diploma#B.W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TNIVP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   TO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     To Jun#No Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TO NOVEMBER#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To obtain A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     To resume BS#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TO#ASSOCIATE'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 TO#BACHELOR'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Toast Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          TODAY Doctor Degree#M.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TOEFL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               TOLEDO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         TON Masters License#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Top Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           TOP SECRET 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Total Quality management of Healthcare Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Tourism Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Toward Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Toward Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            towardB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Towards BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Towards Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Towards Degree#High school 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               TRACOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Trade certification 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Trade Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trade Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   15 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trade Diploma#Cosmetology Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trained 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             TRAINING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     TRAINING Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 training Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                              TRAINING Juris Doctor#J.D#Bachelor of Business Administration#Master of Divinity (M.Div 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   TRAINING#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TRAINING#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 TrainingAssociate of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TRAININGS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TransAtlantic Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Transcription Diploma#Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Transfer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Transfer Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           TRANSFER)\\nUnfinished B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         TRANSFER#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Transfer#MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Transferred 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Transferred of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Transit and Customs Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Translation Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       TRANSPORTATION 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Travel & Hospitality Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Travel & Tourism (Associate Art Degree) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Travel and Tourism Career Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Travel and Tourism Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Travel Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Travel Tourism Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Treasurer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Trilingual Secretarial Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TRIUM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Trust Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Trustees Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Trustees' Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TRW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   TS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TSIPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TSSCI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TUI#Masters#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Turkey Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Tuscarora high\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TUTOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Tutored#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      TV#A.A.S Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TVI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              twelfth 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Twelfth 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                twelfth#tenth#twelfth 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Twelve hours of graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 TWIC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   TX 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 TX#Master of Arts#TX 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type and Year of Degree#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type and Year of degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type and Year of Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type and year of degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Type of degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Type of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Type of Degree N/A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Type of Degree\\nB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type of degree#Associate of Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Type of Degree#B.S#M.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type of Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Type of Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type of Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type of Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type of Degree#BS Engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Type of degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Type of degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type of Degree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                TYPE OF DEGREE#Master's Degree\tMasters of Human Resources Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type of Degree#Type of Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type of Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Typing Examination.\\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               TYPING#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                   T�cnico electricista en mantenimiento de equipos de medida macro medici�n y\\nperdidas de energ�a grandes clientes 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 U .S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               U. S#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           U.A.E. B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                U.A.M 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                U.D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             U.D.C. Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      U.D.C#AA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  U.G 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        u.n.e.f.a#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  U.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       U.S. Army Signal and Telecommunication Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  U.S. Bachelor of Science degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         U.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 U.S. Equivalency of Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                           U.S. Equivalency of Master of Arts#Diploma#Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          U.S. equivalent A.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                U.S.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          U.S.A (MBA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       U.S.A (MBA)#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    U.S.D.A. Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              U.S.D.A. Graduate School Wash., D.C#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              U.S.D.A. Graduate#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      U.S.D.A., A.R.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          U.S.M.C#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              U.S#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   U.S#Bachelor's and master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                U.S#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                U.S#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              U.S#Bachelor's degree#Accounting Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          U.S#diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   UC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               UC A&S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               UC B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                UC BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                UC#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             UC#M.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UCAP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UCLA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          UCLA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UCSC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UCSD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UDC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   12 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UDC Associates Degree#Bachelors of Health Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           UDC Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           UDC#B.S. N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               UDC#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          UDC#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             UDC#High School\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ukraine 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ukraine. MA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ULI#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ultrasound Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     UMA (online)#Bachelor's\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                UMASS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UMBC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UMBC's Graduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                UMBC#Bachelors of Art 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             UMBC#BSW 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             UMBC#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UMBI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UMD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   umd.edu \\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UMKC#Bachelor's Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UMUC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   40 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UMUC\tMasters of Science#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         UMUC B.S#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UMUC BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UMUC Bachelors of art degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UMUC Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             UMUC M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UMUC Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UMUC Masters#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             UMUC) BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UMUC#A.A. and A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           UMUC#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UMUC#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         UMUC#Associate of Art Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             UMUC#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          UMUC#B.S#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UMUC#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           UMUC#BA#AA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UMUC#BA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UMUC#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             UMUC#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             UMUC#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               UMUC#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         UMUC#Bachelor's Degree#Associates in Applied Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           UMUC#Bachelor's Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UMUC#Bachelor's of Applied Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                UMUC#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UMUC#bachelors degree#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UMUC#Bachelors#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UMUC#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       UMUC#BS degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       UMUC#BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           UMUC#BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     UMUC#CIS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         UMUC#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          UMUC#High School\t\tDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               UMUC#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           UMUC#Master of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       UMUC#Master's Degree#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             UMUC#Master's#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         UMUC#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               UMUC#Masters of Information Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UMUC#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         UMUC#Masters#Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   UMUC#MBA#MS#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             UMUC#MS#MBA and Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   UMUC#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UNAM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UNC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UNC#B.A.#B.A. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UNCG 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Uncompleted BS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Undecided BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Undegraduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Under graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Under Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Under graduate Bachelor of Applied Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Under Graduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Under Graduate Degree#BA\\n          (Hons) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Under Graduate#Associate of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Under Graduate#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Under Graduate#Master of Public 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Under Graduate#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     under graduation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Under Graduation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 under graduation#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            under-graduate degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Undergoing 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Undergoing Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Undergrad 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UNDERGRAD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Undergrad & Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Undergrad degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Undergrad Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  433 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UNDERGRADUATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Undergraduate   degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Undergraduate  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Undergraduate (BM) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Undergraduate and Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Undergraduate and Graduate MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Undergraduate and Graduate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Undergraduate Applied Sciences Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Undergraduate Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Undergraduate Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Undergraduate Bachelor Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Undergraduate Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                   UNDERGRADUATE BACHELOR`S DEGREE BACHELOR`S OF ARTS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Undergraduate Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Undergraduate BSc Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Undergraduate Business Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Undergraduate Business Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Undergraduate Communications Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 undergraduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 undergraduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Undergraduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Undergraduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   58 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Undergraduate Degree BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Undergraduate Degree Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Undergraduate Degree\\nB. S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Undergraduate Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Undergraduate Degree#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Undergraduate Degree#Baccalaureate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Undergraduate Degree#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Undergraduate Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             UNDERGRADUATE DEGREE#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Undergraduate Degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    undergraduate degree#Computer Electronics Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Undergraduate Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UNDERGRADUATE DEGREE#Graduate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             undergraduate degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Undergraduate Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Undergraduate Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Undergraduate of Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Undergraduate of Conservatory of Music 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Undergraduate of Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Undergraduate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Undergraduate#12th#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Undergraduate#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Undergraduate#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Undergraduate#AAS Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Undergraduate#AS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Undergraduate#Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Undergraduate#Associate of Environmental Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Undergraduate#Associate\\n          Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Undergraduate#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Undergraduate#Associates of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Undergraduate#B. A#postgraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Undergraduate#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Undergraduate#B.B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Undergraduate#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   10 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Undergraduate#B.S. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UNDERGRADUATE#B.S.N 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Undergraduate#B.S#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Undergraduate#B.Sc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Undergraduate#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Undergraduate#BA \\nGraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Undergraduate#BA degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Undergraduate#Bachelor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Undergraduate#Bachelor degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Undergraduate#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Undergraduate#Bachelor of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                   Undergraduate#Bachelor of Business Administration Degree#Associates in Arts Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Undergraduate#Bachelor of Commerce 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Undergraduate#Bachelor of Computer Networking 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Undergraduate#Bachelor of Design 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Undergraduate#Bachelor of Professional Studies & Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Undergraduate#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   20 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Undergraduate#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Undergraduate#Bachelor of Science#high School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Undergraduate#Bachelor of Sciences 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Undergraduate#Bachelor's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Undergraduate#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Undergraduate#Bachelor's of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Undergraduate#Bachelor's) Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Undergraduate#Bachelors of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Undergraduate#Bachelors of Computer Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                  Undergraduate#Bachelors of Computer Science and Applied Mathematics 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Undergraduate#Bachelors of science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Undergraduate#Bachelors of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Undergraduate#Bachelors of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Undergraduate#Bachelors of Science#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Undergraduate#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Undergraduate#BS#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Undergraduate#Currently seeking Business degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Undergraduate#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Undergraduate#Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Undergraduate#ERHS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Undergraduate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                         Undergraduate#Graduate#Master of Engineering Program (ME)#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Undergraduate#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                Undergraduate#High School Diploma#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Undergraduate#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Undergraduate#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Undergraduate#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Undergraduate#Ph.D.\\nDoctor of philosophy 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                      Undergraduate#School of Business Degree#Bachelor\\nof Science#High School Diploma Degree With high achievements 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Undergraduate#Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Undergraduate#Undergraduate#Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     UndergraduateBachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Undergraduates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Undergraduates degree#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Underwriter Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UNDNJ#M.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Unfinished Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Unfinished undergraduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Unfinished Undergraduate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                UNISA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UNITED STATES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     United States BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 United States Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       United StatesBachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  United StatesBachelor's Degree#UMUC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         United StatesMaster's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      United StatesMaster's Degree#Masters of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                          United StatesMaster's Degree#United StatesBachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UNIV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Univ of MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Universal Degree#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           UNIVERSITY 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                University          Degree Type   Degree#Masters       Master of Computer Application 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                               University          Masters         Business\\nOf Phoenix          Administration#Of Phoenix         of Science         Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  University   Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    University degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    University Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           University Degree (Laurea) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             University Degree#BA, MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             University Degree#degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          University Degree#Diploma#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 University Degree#High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                University Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               University Degree#Polytechnic of Milan 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   University Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              University Diploma ('DU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              University Diploma (MA) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                 University Diploma#Master of Special Education#Diploma#Bachelor of Special Education 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  University Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         UNIVERSITY Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    University Master#Master's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     University of          ;Baccalaureate Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                    University of District of Columbia          Degree#Bachelor#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   University of Manitoba graduate BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                     University of Phoenix          Degree#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                              University of Phoenix          Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     University of Phoenix Degree#High school Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                 University Of Phoenix, Rockville Maryland Business Management Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             University of Virginia Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       University of Virginia Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               University, Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UNIVERSITY'S DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     University/BS#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       UniversityB.A#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UniversityB.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UniversityBachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UniversityM.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Universit� de Gen�ve 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Universit� de Science#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UNIXSYSYTEM ADMINISTRATION#DC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UNLV#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UNVA#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   UP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UPO 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Upper 2nd Class Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Urban Forestry (BS) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Urbanism and Architecture Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Urgency Master Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   US 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   13 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   US\tHonors Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               US\tMS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                US Associate Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           US Diploma and International Baccalaureate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        US Doctor of Philosophy (PhD) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               US High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    US M.S#US#B.S#US Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   US Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 US, Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 US#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  US#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               US#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 US#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       US#High School 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               US#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 US#Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                  US#Master of Management and Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 US#Master's \\nMAJOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   US#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       US#Masters - Master of Business Administration 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                US#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  USA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        USA          High Sch Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               USA  Marketing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       USA (Bachelors of Science)#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        USA (Masters) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            USA MA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         USA. \\nPh.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                USA.\\n?  MS (Master?s Degree) & Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       USA)\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            USA#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 USA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                USA#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                USACE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 USAF 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             USAF#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                USAF#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  USBachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  USC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            USC#Bachelor of Fine Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 USDA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               USENIX 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     USERRA#Intermediate#Intermediate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        USL#Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      USMA#S#Master's 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 USMC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 USPS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                USTHB 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           USTRAINING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UTICA Mississippi 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UVA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 UVA#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               UVST Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Uzbekistan. Diploma#Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               v\tA.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  V A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            v Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      V. A. \\nDIPLOMA#Suitland, M. D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 V.A. \\nJuris Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              V.A#AAS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            V.M.D#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       V.S.D Computing Support Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            V#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   VA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   16 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            VA\t\t\tAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        VA \\n\\n\\n\\nDegree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              VA Associate's\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            VA Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                               VA Degree#Master of Arts#CO Degree#Bachelors\\nof Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                VA High School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             VA High School\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   va, masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Va. Tech 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Va. Tech)\\n          BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Va. Technician Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              VA#Associate Degree#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              VA#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               VA#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                VA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               VA#BSc 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           VA#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               VA#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         VA#Master of Divinity Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                         VA#Master of Maritime Engineering Management 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  VAAssociates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           VAAssociates Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                VAB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  VAB.S#ManagementB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                VABachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         VABachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  VABachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                             Valedictorian & International Baccalaureate (IB) Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              VALEDICTORIAN#MAGNA CUM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Valley with Diploma#AAT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Valuation of Goods#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          VAM.S#NCB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               VAMaster of Science#MS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   variety of diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Various Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             VBOC#EMT 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  VCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  VCU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              VCU#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Vehicle and Equipment Technology Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Venezuela. Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Venezuela.\\nDegree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 VETERAN'S PREFERENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Veterinary Medicine Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Veterinary Science Doctor 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 VETS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    VICTIM'S ADVOCATE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Victoria.\\n\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Vienna, VAHigh School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Vietnam\t         Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Vietnam. Undergraduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  VII 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             VIOLENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Violin Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              VirginaBachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Virginia Commonwealth Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Virginia Master of Arts#Bachelor of Arts#Associate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                            Virginia Master of Arts#Graduate Diploma#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Virginia Tech B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Virginia Tech B.A#Associate of Art and science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Virginia Tech Master of Information Systems 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 VIRGINIA TECH, (Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   VIRGINIA\\nDiploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Virginia#Masters of Divinity#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          VirginiaA.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         VirginiaAssociate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          VirginiaB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   VirginiaBachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      VirginiaBachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               VirginiaMaster of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Virilinzi S.p.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Visiting Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          VISITOR'S DESK RECEPTIONIST 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Visual Arts Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Visual Communications Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Viticulture Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     VMware Associate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 VNSA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              VNSA#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Vocation Degree#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           vocational 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Vocational 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           VOCATIONAL 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Vocational Associate degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Vocational Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   29 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    VOCATIONAL DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Vocational Degree#Vocational Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   11 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Vocational Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   19 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Vocational Diploma#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Vocational Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Vocational Tech Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Voice Writing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Volgenau school of Engineering#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            VOLUNTEER 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Volunteer Management & B.O.S.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            VORDIPLOM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   VP 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             VP of Administration#A.S. Degree#A.S#A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    VP of Business and Economics Club 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  VPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  VPI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    W 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  W.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                W.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              W.A.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              W.A.S.C#West African School Certificate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            W.A.S.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                      W.B. SAUL#High School Diploma#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        W.B.B.S.E#MBA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  W.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                W.D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              W.E.S#Bachelor's degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            W.Z#EMT-B 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           W/ Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       WAEC (High School Certificate) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Waldorf MD 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Walkersville High School graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Warrenton VA. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            WarrentonAssociate Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           WAS()NGTON 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Wash.  D.C. 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Wash. D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        WASH. D.C. BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Wash. D.C#Diploma#Wash. D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Wash. D.C#M.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Wash., DC (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Washington 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           WASHINGTON 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Washington D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       WASHINGTON D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Washington D.C. ; ; ; ;B.A#A.A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Washington D.C\\n  Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Washington D.C\\n\\nSchool &Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Washington D.C#BA#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Washington D.C#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Washington D.C#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   WASHINGTON D.C#high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Washington D.C#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Washington D.C#Ph.D 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Washington D.CM 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Washington Masters Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Washington, (Diploma) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      WASHINGTON, D.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                           WASHINGTON, D.C#Bachelor of Science Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                            WASHINGTON, D.C#Master of Science#Bachelor of Science#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Washington, D.C#Master's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Washington, DCMaster of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Washington,dc high school diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Washington. A Bachelor of Science degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Washington#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       WASHINGTON#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Wayne A. Romer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WCC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WDC 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                WDC#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 WDCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Web Design Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                            websites. Masters degree#Bachelors degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Welder / Fitter ( Diploma ) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 welder Degree#Plumbing Degree#Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WELDING 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Welding Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Welding,  Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        West Texas A&M - B.A.A.S#A. A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 West Ukraine Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     WESTLAKE HIGHSCHOOL- DIPLOMA#BACHELOR OF SCIENCE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 WGPA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        whiting school of engineering 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   WI 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Wiesbaden, Degree#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Will complete A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 WILL COMPLETE DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Will complete Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Will graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Will Graduate 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Will graduate#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Will graduate#Associates Degree#Bachelors Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Will Graduate#BA 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Will graduate#With Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Will obtain Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Will receive degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 William B. Idoniboye 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        WinterGrowth. Monthly#M.A#B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                with Business Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WMU#Masters of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     WOMEN'S LACROSSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Woodbridge High School\tAcademic Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Woodbridge, V A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      WOODBRIDGE#Associate of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WOR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Word Processing Automation Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Word Processing Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Word Processing Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Work 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 WORK 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          WORK (Ph.D) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 WORKED TOWARD DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Worked towards Master degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    WORKERS OF AMERICA#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Working Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Working towards A.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Working towards A.S#A.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Workshop 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Writing Degree#Bachelor's Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           WritingB.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   WV 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      WV, Masters of Criminal Justice 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            WV??????? 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         WV#Bachelors 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           WV#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WV#T.A.M. Certified 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          WVB.S#MDB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WVU 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              www.gwu.edu) M.S#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       www.neu.edu BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  www.nvcc.edu \\n\\nBACHELORS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   www.nvcc.edu\\n\\nBACHELORS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 www.ruet.ac.bd\\n*Degree/Diploma#Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 X\tMasters#Bachelor of Arts (Honors) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       X Standard#BSE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                          X STD#Hr. Sec#Matriculation#XII STD Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            X#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 XA.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 XB.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   XEROX#H.S. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  XII 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     XII#10+2#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    XII#Matriculation 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   XIX#Master of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  XML 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              YAOUNDE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 YEAR 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Year\t\t\tDegree#B.A 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Year\t         Degree#Master of Computer 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Year\tDegree#Diploma#Master of Computer Applications 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Year\tDegree#Master 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Year     Degree#Bachelor of Technology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Year    Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Year / Degree#Master of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Year Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          YEAR DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  year Degree (GNIIT) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Year Degree#Bachelor of\\n\\nTechnology 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                       Year Degree#Master of Science#Master of Public Administration#Bachelor of Arts 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Year Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Year of Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Year of graduated 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Year of Passing Degree#HS Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Year School Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     YEAR(S) ATTENDED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          YEAR#Diploma#Masters degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                YEARS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       YEARS ATTENDED 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     YEARS ATTENDED#Associates Degree 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   YEARS ATTENDED#High School Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         YEARS DEGREE 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                             years' Diploma (including B.Sc and M.Sc) 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  YES 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Yes Degree/Diploma#Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Yes.  Associates 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               YES#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    York H.S. Diploma Regents Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Young Masters 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Yr. Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Zaria and Diploma 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ZEducation#BS 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                � ' BBA (Bachelor of Business Administration)#H.S.S.C 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 �B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 �Bachelor of Science 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            �M.A#�B.S 
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
degree_clean <- ed%>%
  filter(!is.na(degreetype))%>%
  mutate(degree_somehs = if_else(str_detect(string = degreetype, 
                              pattern = "\\b(?i)(10|11|9)\\b"), T,F))%>%
  mutate(degree_hs = if_else(str_detect(string = degreetype, 
                              pattern = "\\b(?i)(12|High School|ged)\\b"), T,F))%>%
  mutate(degree_bachelor = if_else(str_detect(string = degreetype, 
                              pattern = "\\b(?i)(Bachelor|bachelor|Bachelors|BS|bs|AA|A.A|Undergraduate|undergraduate|postgraduate|Associate|associate)\\b"), T,F))%>%
  mutate(degree_master = if_else(str_detect(string = degreetype, 
                              pattern = "\\b(?i)(master|Master|MBA|M.S|MS|MD)\\b"), T,F))%>%
  mutate(degree_doctor = if_else(str_detect(string = degreetype, 
                              pattern = "\\b(?i)(phd|Ph.D|postdoc)\\b"), T,F))%>%
  mutate(degree_highest = if_else(degree_doctor == T, "doctor", 
                                  if_else(degree_master == T, "master",
                                          if_else(degree_bachelor == T, "bachelor", if_else(degree_hs == T, "hs", 
                                                                                            if_else(degree_somehs == T, "somehs", "others"))))))



table(degree_clean$degree_highest)
## 
## bachelor   doctor       hs   master   others   somehs 
##   323002    10309    46110   133984   267101       35

In total, there are 1184532 entries in ed table. After a preliminary clean up of degree, we identified 65.78% of self reported degree type into 5 categories: some high school, high school, bachelor, master, and doctor's degree.

Table: Skill

#check that id columns are identical and drop one
ncol(skill)
## [1] 9
identical(skill[[1]],skill[[9]])
## [1] TRUE
skill <- skill[-9]

data_profiling(skill)
## # A tibble: 8 x 5
##   var           variable_type num_unique num_missing perc_missing
##   <chr>         <chr>              <int>       <int>        <dbl>
## 1 id            integer           650702           0           0 
## 2 skillid       integer            14161           0           0 
## 3 skill         character          14165           0           0 
## 4 cluster       character            656     4381757    54771962.
## 5 clusterfamily character             29     4381757    54771962.
## 6 isbaseline    logical                2           0           0 
## 7 issoftware    logical                2           0           0 
## 8 isspecialized logical                2           0           0

In total, there are 21591463 entries in cert table, representing 650702 unique IDs and 14161 skills. The number of unique enumerated skills (written out) is 14165 which means that the number of skillids does not match the number of skills. It is possible that they were coded to have some overlap, though it's strange that the numbers are so close and yet not equal.

Below is a list of the top 10 skills:

top_10 <- skill %>%
  group_by(skill) %>%
  summarize(n = n()) %>%
  arrange(desc(n)) %>%
  head(10)
## `summarise()` ungrouping output (override with `.groups` argument)
top_10
## # A tibble: 10 x 2
##    skill                      n
##    <chr>                  <int>
##  1 Microsoft Excel       282009
##  2 Microsoft Office      266057
##  3 Research              245560
##  4 Customer Service      216456
##  5 Organizational Skills 216065
##  6 Budgeting             211774
##  7 Microsoft Powerpoint  205390
##  8 Planning              197246
##  9 Communication Skills  194157
## 10 Scheduling            191190

Below is a list of the bottom 15 skills. These are much messier and there are many more skills with only one entry.

bottom_15 <- skill %>%
  group_by(skill) %>%
  summarize(n = n()) %>%
  arrange((n)) %>%
  head(15)
## `summarise()` ungrouping output (override with `.groups` argument)
bottom_15
## # A tibble: 15 x 2
##    skill                                        n
##    <chr>                                    <int>
##  1 5-Axis CNC Router                            1
##  2 Account Inquiry Resolution                   1
##  3 Accounts Payable Accrual Journal Entries     1
##  4 Acid Base Chemistry                          1
##  5 Acoustic Neuroma                             1
##  6 Activase                                     1
##  7 Active Infection                             1
##  8 ADaMSoft                                     1
##  9 Adaptive Eating                              1
## 10 Adaptive Immune Systems                      1
## 11 ADMOS                                        1
## 12 Adoption Medicine                            1
## 13 Adoption Outreach                            1
## 14 Adoption Relations                           1
## 15 Advanced Manufacturing Implementation        1

Below is a plot of the isbaseline variable:

skill %>%
  group_by(isbaseline) %>%
  summarize(n=n()) %>%
  ggplot() +
  geom_bar(aes(x = isbaseline, y = n), stat = 'identity') +
  geom_text(aes(x = isbaseline, y = n, label = n), vjust = -0.5)
## `summarise()` ungrouping output (override with `.groups` argument)

Below is a plot of the issoftware variable:

skill %>%
  group_by(issoftware) %>%
  summarize(n=n()) %>%
  ggplot() +
  geom_bar(aes(x = issoftware, y = n), stat = 'identity') +
  geom_text(aes(x = issoftware, y = n, label = n), vjust = -0.5)
## `summarise()` ungrouping output (override with `.groups` argument)

Below is a plot of the isspecialized variable:

skill %>%
  group_by(isspecialized) %>%
  summarize(n=n()) %>%
  ggplot() +
  geom_bar(aes(x = isspecialized, y = n), stat = 'identity') +
  geom_text(aes(x = isspecialized, y = n, label = n), vjust = -0.5)
## `summarise()` ungrouping output (override with `.groups` argument)